My table have some data like "25, 225, 1025...etc"
When type "25" I only want data "25" come up but no other data contain "25", can anyone give me some idea how to do that?
Thank very much!
You need to do regular expression filtering. ^25$ should match 25 and 25 only. There is another way to do it if you want - you could use plug-in filtering: http://datatables.net/development/filtering - which will allow you to do a "==" match.
Replies
Allan