Multi-Filter not working with other parameters.

Multi-Filter not working with other parameters.

jibindcruzjibindcruz Posts: 1Questions: 0Answers: 0
edited November 2013 in General
I am not able to make the multi-filter work if i provide other attributes.
For example:
[code]
var oTable = $('#example').dataTable( {
"oLanguage": {
"sSearch": "Search all columns:"
},
"sDom": '<"H"Cfr>t<"F"ip>',
"bJQueryUI": true,
//"sScrollY": "200px",
//"bPaginate": false,
"aoColumnDefs": [
{ "bVisible": false, "aTargets": [ 0 ] },// line to hide the first column!

] ,


} );
[/code]
The above code would not work since it has other parameters included in them.

[code]
var oTable = $('#example').dataTable( {
"oLanguage": {
"sSearch": "Search all columns:"
}
} );
[/code]

But this would work, I need to figure out way to make the first code work so that i can include colvis plugin along with the multi-filter search. Can some one point out to me where I am going wrong?
This discussion has been closed.