admin管理员组文章数量:1339459
I am writing an application using Data-table plugin. I want to handle the error thrown by plugin by my function but plugin always show a alert box with error message.
In the page load event, I am creating a datatable plugin and registering a handler.
function callOnLoad()
{
$.fn.dataTable.ext.errorMode = "none";
auditViewTable = $("#div").on("error.dt",function(e, settings, techNote, message ){
console.log("error");
})
.DataTable({
"processing": true,
"serverSide": true,
"ajax": "getData",
"columns": [
{ "data": "events" },
{ "data": "id" },
{ "data": "name" },
{ "data": "obj_id" },
{ "data": "obj" }
]
});
}
Please help me where I am going wrong.
I am writing an application using Data-table plugin. I want to handle the error thrown by plugin by my function but plugin always show a alert box with error message.
In the page load event, I am creating a datatable plugin and registering a handler.
function callOnLoad()
{
$.fn.dataTable.ext.errorMode = "none";
auditViewTable = $("#div").on("error.dt",function(e, settings, techNote, message ){
console.log("error");
})
.DataTable({
"processing": true,
"serverSide": true,
"ajax": "getData",
"columns": [
{ "data": "events" },
{ "data": "id" },
{ "data": "name" },
{ "data": "obj_id" },
{ "data": "obj" }
]
});
}
Please help me where I am going wrong.
Share Improve this question edited Apr 21, 2018 at 10:24 Priyanka Maurya 3851 silver badge10 bronze badges asked May 17, 2015 at 3:43 pixelrpixelr 1571 gold badge3 silver badges11 bronze badges1 Answer
Reset to default 14See the documentation -> http://datatables/reference/event/error
error.dt
was first introduced in 1.10.5 !! So you must use at least 1.10.5. Proof of concept : works not, 1.10.4 example / works, 1.10.5 example.The correct option to target is
$.fn.dataTable.ext.errMode
.A working example would be using >1.10.4 and
$.fn.dataTable.ext.errMode = 'none';
$('#example').on('error.dt', function(e, settings, techNote, message) {
console.log( 'An error has been reported by DataTables: ', message);
})
本文标签: javascriptDatatable custom error handling not workingStack Overflow
版权声明:本文标题:javascript - Datatable custom error handling not working - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743588964a2506869.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论