|
Title: Combobox Find instead of Filter... Post by: 2plus2 on April 21, 2013, 07:24:15 PM Is there a way to have the combobox filter option "find" the auto-complete text instead of filtering? We'd like to try having the auto-complete just drop down to the first match instead.
Title: Re: Combobox Find instead of Filter... Post by: 2plus2 on April 26, 2013, 11:47:01 AM Bumping.
Is this an enhancement request, or something we can do already? Title: Re: Combobox Find instead of Filter... Post by: frapa02 on May 08, 2013, 03:06:36 PM I have a similar need and what you need to do is process the 'find' request appropriately in your server program. So, instead of using the passed parameter to form part of the SQL where clause you could save the entire data set in an array, then do the find in PHP or whatever code you are using and position the page offset so that it contains the required row. Doing it this way will just position the page without affecting the data set from the database.
Let me know what you think... |