我想使用数据数据表添加行,我可以这样做
var table = $('#mytable').DataTable();
table.add.row(['first column', 'second column', 'three column', 'etc']);
我需要的是这样的东西(TR和TD标签中的一些属性)
<tr id="someID">
<td>first column</td>
<td>second column</td>
<td>three column</td>
<td id="otherID">etc</td>
</tr>
我如何使用数据表进行操作?
答案 0 :(得分:58)
使用createdRow
和columns.createdCell
选项定义将在创建TR
和TD
元素时调用的回调函数。
$('#example').dataTable( {
'createdRow': function( row, data, dataIndex ) {
$(row).attr('id', 'someID');
},
'columnDefs': [
{
'targets': 3,
'createdCell': function (td, cellData, rowData, row, col) {
$(td).attr('id', 'otherID');
}
}
]
});
请参阅this example以获取代码和演示。
答案 1 :(得分:-1)
"fnRowCallback": function (nRow, aData) {
var $nRow = $(nRow);
$title = `Detalles de la Orden No. ${aData['noOrden']}`;
$nRow.attr("title", $title);
return nRow;
},