Is there an ability to do a reverse search?
Is there an ability to do a reverse search?
lmartinez
Posts: 8Questions: 5Answers: 2
I added a button to add a instant search based on the values on one of my columns. Is there a way I can get the results of the data not matching my search criteria? Ex. Searching all Products not sold by "Apple".
I know to search you can use this,
mytable.column(1)
.search('Apple')
.draw();
but, is it possible to get all the results that aren't apple?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Nothing built-in to Datatables but you could write a search plugin.
Kevin