views:

10

answers:

0

I have a filtering select emplemented on a large dataset (~10,000) and it works rather well. However, what I would like to do is as the user is typing, display how many records match. So let's say you have the data set:

1A 1B 1C 2A 2B 2C

...and the user types the number 1, the number I would like to return to the users is (3 matches). Then if the user selects a single time, the match count goes to 1. Right now, I have the solutions paging ('see more') at the bottom of the filtering select, but it would be very helpful to be able to see how many items match.

Sincerely...