gpt4 book ai didi

jquery - 为多列应用唯一类

转载 作者:太空宇宙 更新时间:2023-11-04 09:53:42 24 4
gpt4 key购买 nike

如何为 Jquery 数据表中的每一列应用不同的类。我尝试在列定义中使用一些属性

$('#asset-table').DataTable({..... 
"columns": [
{
"name": "claimNum",
"title": "Claim#",
"width": "11%",
"type": "string",
"data": "claimNum",
"visible": assetDisplayColumns.indexOf("claimNum") != -1
},
{
"name": "salvor",
"title": "Salvage Provider",
"width": "5%",
"type": "string",
"data": "salvor",
"visible": assetDisplayColumns.indexOf("salvor") != -1
},.....

最佳答案

它使用每列的 columsDefs 属性工作

var assetTable = $('#asset-table').DataTable({
"columnDefs": [{ className: "makeItalic", "targets": [ 1,2,3 ] },
{ className: "makeBold", "targets": [ 4,5 ] }],....

关于jquery - 为多列应用唯一类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38904082/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com