fnSetFilteringDelay adds the word 'static' to global search and stop working.
fnSetFilteringDelay adds the word 'static' to global search and stop working.
He,
I have a issue I can't get rid of... I have a datatable with columnfilters/tabletools and setFilteringDelay. Now when I want to filter data individually 'setFilteringDelay' works for one time, but it also adds the word 'static' in my global search box and then stops working. I tried different fnSetFilterdelays from the forums but no one seems to fix it.
Here is my initialization code of my table:
[code]
var dataTable = $('#report_table').dataTable({
"bProcessing": true,
"bServerSide": true,
"aoColumns": data,
"aoColumnDefs" : [ {
'bSortable' : false,
'aTargets' : [ 0 ]
} ],
"sScrollX": "100%",
//"sScrollXInner": "100%",
// "bDeferRender": true,
"sScrollY": tableScrollHeight + "px",
"bScrollCollapse": true,
"sAjaxSource": windowUrl + "/getjsondata/"
"fnInitComplete": function(){this.fnSetFilteringDelay(500);}
}).columnFilter({sPlaceHolder: "head:after"});
[/code]
and I use this fnSetFilteringDelay code:
https://code.google.com/p/edatatables/source/browse/trunk/assets/jquery.fnSetFilteringDelay.js?r=4b34fa8d382d2c1f1bc93d45ddfbea482c3898fa
Can anyone help me?
Many thanks!
I have a issue I can't get rid of... I have a datatable with columnfilters/tabletools and setFilteringDelay. Now when I want to filter data individually 'setFilteringDelay' works for one time, but it also adds the word 'static' in my global search box and then stops working. I tried different fnSetFilterdelays from the forums but no one seems to fix it.
Here is my initialization code of my table:
[code]
var dataTable = $('#report_table').dataTable({
"bProcessing": true,
"bServerSide": true,
"aoColumns": data,
"aoColumnDefs" : [ {
'bSortable' : false,
'aTargets' : [ 0 ]
} ],
"sScrollX": "100%",
//"sScrollXInner": "100%",
// "bDeferRender": true,
"sScrollY": tableScrollHeight + "px",
"bScrollCollapse": true,
"sAjaxSource": windowUrl + "/getjsondata/"
"fnInitComplete": function(){this.fnSetFilteringDelay(500);}
}).columnFilter({sPlaceHolder: "head:after"});
[/code]
and I use this fnSetFilteringDelay code:
https://code.google.com/p/edatatables/source/browse/trunk/assets/jquery.fnSetFilteringDelay.js?r=4b34fa8d382d2c1f1bc93d45ddfbea482c3898fa
Can anyone help me?
Many thanks!
This discussion has been closed.
Replies
Allan