Change search column on the fly
Change search column on the fly
Right now, I'm using this to filter certain columns:
[code]
"aoColumnDefs" => array(
array(
"bSearchable" => false,
"aTargets" => array(0,1,5,6,7,8,9)
),
),
[/code]
But is there a way to change it on the front end? Like after I load the table, I want the user to check a bunch of columns they want to search through with one search box.
Thanks!
[code]
"aoColumnDefs" => array(
array(
"bSearchable" => false,
"aTargets" => array(0,1,5,6,7,8,9)
),
),
[/code]
But is there a way to change it on the front end? Like after I load the table, I want the user to check a bunch of columns they want to search through with one search box.
Thanks!
This discussion has been closed.