如何在我的应用程序中使用的jquery数据表插件中创建全选复选框。数据表中是否有此功能的插件。我无法在搜索中找到任何此类内容。
$("#button_select_all").click(function () {
$(allSamplesTable.fnGetFilteredNodes()).find(':checkbox').each(function () {
$this = $(this);
$this.attr('checked', 'checked');
for (var i = 0; i < _sampleTableExports.length; i++) {
if (_sampleTableExports[i]["Id"] == $(this).val()) {
_sampleTableExports.splice(i, 1);
return true;
}
}
_sampleTableExports.push({ "Name": $(this).attr("name"), "Id": $(this).val() });
});
});