我是 Datatable 的新手,正在尝试配置 Datatable,以便它使用 ajax 获取数据,将其显示为复选框、锚点和选项卡,并允许用户对其进行排序。我有 ajax 和格式化部分,但是当我尝试对复选框进行排序时,它什么也不做。我查找了记录的示例并从中获取了排序处理程序:
排序代码:
/* Create an array with the values of all the checkboxes in a column */
$.fn.dataTableExt.afnSortData['dom-checkbox'] = function (oSettings, iColumn) {
var aData = [];
$('td:eq(' + iColumn + ') input', oSettings.oApi._fnGetTrNodes(oSettings)).each(function () {
aData.push(this.checked == true ? "1" : "0");
});
return aData;
}
创建复选框的代码:
$('#example').dataTable({
"bProcessing": true,
"sAjaxSource": "sources/myData.json",
"sAjaxDataProp": "items",
"aoColumns": [
{
"mData": function (source, type, val) {
if (source.Published)
return '<input type="checkbox" checked="checked"/>';
else
return '<input type="checkbox" />';
},
//"sType": "dom-checkbox",
"sSortDataType": "dom-checkbox"
//, "bSortable": false
},
{ "mData": "Author" },
{
"mData": function (source, type, val) {
return '<a href="' + source.Href + '">' + source.$name + '</a>';
}
}
]
});
排序函数 ($.fn.dataTableExt.afnSortData['dom-checkbox']
被调用并返回数据,但是表没有更新。(代码有效,但不适用于 ajax 表)。
数据样本:
{
"items": [
{
"$name": "a",
"Href": "http://google.com",
"Author": "a",
"Published": true
},
{
"$name": "c",
"Href": "http://www.whiskas.at/",
"Author": "a",
"Published": false
}
]
}