Sanjana V

Sanjana V

  • 1.5k
  • 112
  • 14k

Multi-column search performs search only for current page

Jul 10 2017 12:54 AM

I am using jQuery multifilter plug-in, but the multi column search works good only for the current page, how can I use the same plug-in to search the entire data-table(from other pages as well)? Kindly help, Thanks.

Multicolumn search using jQuery plugin MultiFilter :

$(document).ready(function () {     $('.filter').multifilter()     console.log(jQuery().jquery); })
The textboxes for each column to search :
<div class='filter-container'> <input autocomplete='off' class='filter txtBox2 ' id="txtB2" name='firstname' placeholder='First Name' data-col='First Name' /> </div> <div class='filter-container'> <input autocomplete='off' class='filter txtBox3 ' id="txtB3" name='lastname' placeholder='Last Name' data-col='Last Name' /> </div> <div class='filter-container'> <input autocomplete='off' class='filter txtBox4 ' id="txtB4" name='dateofbirth' placeholder='Date of Birth' data-col='Date Of Birth' /> </div>
 

Answers (1)