我正在尝试在我的应用程序中使用jquery数据表。我设法让它与服务器数据更新完美配合
用于创建表的javascript看起来像这样
jQuery(function() {
return $('#example').dataTable({
sPaginationType: "full_numbers",
bProcessing: true,
bServerSide: true,
bRetrieve: true
});
}).call(this);
问题是我需要在javascript中添加一个钩子,以便在从服务器更新表数据后更新另一个页面元素
答案 0 :(得分:1)
fnDrawCallback
是您的回调:
"fnDrawCallback" : function(oSettings) {
// Update the element
}