yes, make it true for searchable columns and false for non searchable.
you just put this code in your js and make sure use this parameter not greater than your column no..means if you have 3 column then use this code like this..
[code]$('#tableId').dataTable("aoColumns": [ {"bSearchable": true}, {"bSearchable": false}, {"bSearchable": false}]); [/code]
first bSearchable": true means first column is searchable not others.
FOR FURTHURE INFORMATION VISIT THIS PAGE... http://datatables.net/usage/server-side
Replies
hth,
Gerardo
How to set line?
I have seen "bSearchable": true,
How to set correct coloumn?
[code]$('#tableId').dataTable("aoColumns": [ {"bSearchable": true}, {"bSearchable": false}, {"bSearchable": false},.../*do false for other columns.*/]);[/code]
Thanks,
vivek
and in which line to put:
$('#tableId').dataTable("aoColumns": [ {"bSearchable": true}, {"bSearchable": false}, {"bSearchable": false}]);
you just put this code in your js and make sure use this parameter not greater than your column no..means if you have 3 column then use this code like this..
[code]$('#tableId').dataTable("aoColumns": [ {"bSearchable": true}, {"bSearchable": false}, {"bSearchable": false}]); [/code]
first bSearchable": true means first column is searchable not others.
FOR FURTHURE INFORMATION VISIT THIS PAGE... http://datatables.net/usage/server-side
Thanks,
Vivek