给出以下代码:
var aDataSet = [
['1', 'Trident','Internet Explorer 4.0','Win 95+','4','X'],
['2', 'Fish','Internet Explorer 5.0','Win 95+','5','C'],
['3', 'Pony','Internet Explorer 5.5','Win 95+','5.5','A']
];
$('#example').dataTable( {
"aaData": aDataSet,
"aoColumns": [
{ "sTitle": "Engine" },
{ "sTitle": "Browser" },
{ "sTitle": "Platform" },
{ "sTitle": "Version", "sClass": "customCSS-" +aDataSet['id']['Version'] },
{ "sTitle": "Grade", "sClass": "center" }
]
} );
我希望能够查找当前正在处理的aDataSet
元素并获取其Version
信息,以便我可以在aoColumns
样式的上下文中进行字符串连接。以上不执行任何样式。这个修改:
{ "sTitle": "Version", "sClass": "customCSS-" +aDataSet[0]['Version'] }
使所有内容与第0个索引相符(显然),但我希望我能以某种方式强制查找。任何见解都表示赞赏。
答案 0 :(得分:3)
好吧,老实说,我不认为你担心Version
值本身,因为那只是数据表的标准虚拟数据,所以我冒昧不使用它作为串联的一部分css
班级名称。 Version
值包含点,这些将使css混乱。然后考虑到这一点,并假设我理解你要做的事情,这是执行任务的一种方式,如jsbin所示:
http://jsbin.com/onelev/2/edit
这里的主要观点是使用 fnRowCallback 来生成 表格单元格上的动态类名称。
用于样式化自定义单元格颜色的CSS
.customCSS-Trident, table.dataTable tr.even td.customCSS-Trident.sorting_1, table.dataTable tr.odd td.customCSS-Trident.sorting_1 { background-color: blue; color: #fff; }
.customCSS-Fish, table.dataTable tr.even td.customCSS-Fish.sorting_1, table.dataTable tr.odd td.customCSS-Fish.sorting_1 { background-color: green; color: #fff; }
.customCSS-Pony, table.dataTable tr.even td.customCSS-Pony.sorting_1, table.dataTable tr.odd td.customCSS-Pony.sorting_1 { background-color: brown; color: yellow; }
.customCSS-Cabbage, table.dataTable tr.even td.customCSS-Cabbage.sorting_1, table.dataTable tr.odd td.customCSS-Cabbage.sorting_1 { background-color: pink; }
JavaScript
$(document).ready( function() {
var oTable = $('#example').dataTable( {
"aaData": aDataSet,
"aoColumnDefs": [
{ "aTargets": [ 0 ],
"sTitle": "#"
},
{ "aTargets": [ 1 ],
"sTitle": "Engine"
},
{ "aTargets": [ 2 ],
"sTitle": "Browser"
},
{ "aTargets": [ 3 ],
"sTitle": "Platform"
},
{ "aTargets": [ 4 ],
"sTitle": "Version"
},
{ "aTargets": [ 5 ],
"sTitle": "Grade",
"sClass": "center"
}
],
"fnRowCallback": function( nRow, aData, iDisplayIndex ) {
$('td:eq(4)', nRow).addClass("customCSS-" + aData[1]);
return nRow;
},
});
} );
HTML
<table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
<thead>
<tr>
<th>#</th>
<th>Engine</th>
<th>Browser</th>
<th>Platform(s)</th>
<th>Engine version</th>
<th>CSS grade</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<强>附录强>
对某个特定列进行排序时,DataTable会动态生成sorting_1
类。如果您拥有持有shift键然后单击另一个列标题的复杂用户,则数据表会生成另一个名为sorting_2
的类,依此类推。虽然让用户按多列排序的可能性非常低,但可以通过为这些额外案例添加额外的css
规则来处理这些案例。