Problem with Filtering
Problem with Filtering
Hello,
(sorry for my english i'm a poor french ^^)
I tried succesful to do one thing : when i type on letter, it filters rows where the word starts with this letter, not contains it.
Example :
I type "e", it displays :
Easter
Eat
Ending
....
Only words which start with "e".
To do that, i modified the row 4020 in :
[code]sRegExpString = '^('+asSearch.join( ')(?=.*?' )+').*$';[/code]
-------------
Now my problem is to select rows from first letter typed (which select words beginning by this letter) ....
... Argh I can't explain that with my bad english ... So here is an example :
I type "e", and it displays :
Easter
Eat
Ending
French
Fries
Monster
Super
Tomato
....
It displays only rows where first letter >= "e".
Is that possible to do that ?
What do I have to modify ? How ?
Thanks a lot !
(sorry for my english i'm a poor french ^^)
I tried succesful to do one thing : when i type on letter, it filters rows where the word starts with this letter, not contains it.
Example :
I type "e", it displays :
Easter
Eat
Ending
....
Only words which start with "e".
To do that, i modified the row 4020 in :
[code]sRegExpString = '^('+asSearch.join( ')(?=.*?' )+').*$';[/code]
-------------
Now my problem is to select rows from first letter typed (which select words beginning by this letter) ....
... Argh I can't explain that with my bad english ... So here is an example :
I type "e", and it displays :
Easter
Eat
Ending
French
Fries
Monster
Super
Tomato
....
It displays only rows where first letter >= "e".
Is that possible to do that ?
What do I have to modify ? How ?
Thanks a lot !
This discussion has been closed.