javascript - data mismatching if hide some column in datatables -
i have assigned columns hide list unable hide column's search option in datatables , php.
"aocolumndefs": [{ "bvisible": false, "atargets" : [0,8,11,12,15] } ] this creating select box searching individual column.
$("thead th").each( function ( ) { this.innerhtml += fncreateselect( otable.fngetcolumndata(i) ); $('select', this).change( function () { otable.fnfilter( $(this).val(), ); } ); } ); now please tell me corresponding select box appearing top of column individual column search disappeared? in advance.
Comments
Post a Comment