I use jQuery Datatables Plugin.
When I type a in search box Datatables filters all data in table contains a letter
But I want to search (alphabetical ) like this
when I type ‘a’ just filters all data starts with ‘a’
I use jQuery Datatables Plugin. When I type a in search box Datatables filters
Share
give this a try then:
'^a.*'the regex searching for, replace the a with your filteryourColumnspeaks for itselftrueneeded to treat the first string as a regex, check the api