JQuery DataTable Column Filter Checkboxes not working when Column drag another position
JQuery DataTable Column Filter Checkboxes not working when Column drag another position
naved
Posts: 2Questions: 1Answers: 0
JQuery DataTable Column Filter - Using Checkboxes not working when after Column drag and drop to another position
This discussion has been closed.
Answers
Finally I resolved the mentioned issue myself, I posting here the solution for those who got this issue we need to open jquery.dataTables.columnFilter.js and find the following function: roughly line number is 565 function fnCreateCheckbox(oTable, aData) in the very end of this function you will find oTable.fnFilter(search, index, true, false);
you need just replace the parameter 'index' with this.value your problem will be resolve..
after this the reset button won't work, so don't worry about this just go to roughtly line number 590
you will find Jquery UI dialog plugin which have same method which you changed above oTable.fnFilter('', index, true, false); you need just replace the parameter 'index' with this.value