Re: how interact if the user makes changes in a text field

2012-11-24 Thread Robert Sneidar
This is what I do. Obviously, when you read the code, I am interacting with a database connection, so you will have to write your own code. It's still buggy because I was rewriting it to not read from the database every time, but the keyUp handler works perfectly. It will basically wait until a

Re: how interact if the user makes changes in a text field

2012-11-24 Thread Ueliweb
thanks! both works well 2012/11/24 Marek Niesiobedzki > textChanged ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman

Re: how interact if the user makes changes in a text field

2012-11-24 Thread Marek Niesiobedzki
textChanged message should be your friend. Marek ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: how interact if the user makes changes in a text field

2012-11-24 Thread Dr. Hawkins
On Saturday, November 24, 2012, Ueliweb wrote: > I want to implement a "live search" so if the user enter new letter in a > search field. > The DataGrid should show only the entries that contains the letters in one > or more column. > You can put a keyUp handler in your search field, and calculat

how interact if the user makes changes in a text field

2012-11-24 Thread Ueliweb
I want to implement a "live search" so if the user enter new letter in a search field. The DataGrid should show only the entries that contains the letters in one or more column. I could not find a message or function yet ... Is there any message sent? Other suggsestion? thanks Ueliweb __