How do I change it from a min of 3 characters ro a min of 1 character for search?

How do I change it from a min of 3 characters ro a min of 1 character for search?

bneilybneily Posts: 1Questions: 0Answers: 0
edited August 2010 in General
I have ticket id's that are single digit numbers and wanted to modify the search ability to only need 1 character to search by.

Thanks!

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    The filter currently will update for every keypress. For example: http://datatables.net/ and search for 'z'.

    I guess that the filter is matching on more records than you were expecting since it searches for partial matches, not just an exact string. If you want an exact string match, you can use fnFilter to do a regex match: http://datatables.net/api#fnFilter

    Allan
This discussion has been closed.