override processing indicator
override processing indicator
Hello,
is there a way to completely override the processing indicator? I have a general processing indicator which I use in my site, and I would like my datatables instances to call this upon ajax start/finish loading.
Thanks in advance
is there a way to completely override the processing indicator? I have a general processing indicator which I use in my site, and I would like my datatables instances to call this upon ajax start/finish loading.
Thanks in advance
This discussion has been closed.
Replies
Allan
For anyone interested here's how I implemented it:
[code]
$('#table_id').dataTable().bind('processing',
function (e, oSettings, bShow) {
if (bShow) {
show_my_ajax_indicator();
} else {
hide_my_ajax_indicator();
}
});
[/code]
Allan