我想更改jQuery Datatable插件生成的我的数据表列的标题
你知道我能不能做这样的事情:
table = $('#example').DataTable({
"data": source_dataTable,
"columnDefs": defs,
"dom": 't<"top"f>rt<"bottom"lpi><"clear">',
});
// WHAT I WANT TO DO:
table.column(0).title.text("new title for the column 0")
它将html呈现为第一行:
<table id="example" class="row-border hover dataTable no-footer" role="grid" aria-describedby="example_info" style="width: 1140px;">
<thead>
<tr role="row">
<th class="sorting" tabindex="0" aria-controls="example" rowspan="1" colspan="1" aria-label="S&#233;lectionn&#233;: activer pour trier la colonne par ordre croissant" style="width: 94px;">Sélectionné</th>
<th class="sorting" tabindex="0" aria-controls="example" rowspan="1" colspan="1" aria-label="Anglais : activer pour
trier la colonne par ordre croissant" style="width:
62px;">Anglais </th>
</tr>
</thead>
</table>
...
在普通表中,代码工作正常,但对于jQuery插件呈现的数据表,它没有:
$('#example tr:eq(0) th:eq(0)').text("Text update by code");
也许有一种API方法或另一种方法?
答案 0 :(得分:8)
我找到了一个真正动态的解决方案
$(table.column(1).header()).text('My title');
答案 1 :(得分:4)
使用下面的代码。检查DEMO
如果第一个tr与td
$('table tr:eq(0) td:eq(0)').text("Text update by code");
如果是第一个tr
$('table tr:eq(0) th:eq(0)').text("Text update by code");
使用服务端进程或想要在数据表加载所有数据后执行某些操作Draw event。
Draw event - 在牌桌完成抽签后解雇
示例
$('#example').dataTable();
$('#example').on( 'draw.dt', function () {
console.log( 'Redraw occurred at: '+new Date().getTime() );
$('#example tr:eq(0) th:eq(0)').text("Text update by code");
} );
使用回调。
drawCallback每次DataTables执行绘制时调用的函数。检查DEMO
$('#example').dataTable( {
"drawCallback": function( settings ) {
$('#example tr:eq(0) th:eq(0)').text("Text update by code");
}
} );
检查所有回调选项HERE
答案 2 :(得分:1)
可以通过这种方式:
"columns": [{ sTitle: "Column1"},{ sTitle: "Column2"}]