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

Popular posts from this blog

basic authentication with http post params android -

vb.net - Virtual Keyboard commands -

How to get multiresult with multicondition in Sql Server -