multiple values search in single column
multiple values search in single column
pranesh
Posts: 1Questions: 1Answers: 0
I want to search multiple values(all checked values from checkbox) in single column of datatable .
var b = table
.columns( 2 )
.search( "SAMSUNG");
var a= table
.columns( 2 )
.search( "HP");
var c=a.concat(b);
c.draw();
This discussion has been closed.
Answers
See search() API. You can make your search be regex.
Example code
Hi this is not working for me.
Is there an alternative?