01-02-2013 10:54 PM
What's the canonical way to validate the contents of a TextField as the user types? For example in one field I want the user to be allowed to enter integer values from 0 to 99. In another text field only valid decimal values from -10.0 to +10.0. So I want to prevent the user from entering invalid characters, and also in the correct ranges.
01-02-2013 11:55 PM
01-03-2013 12:01 AM
01-03-2013 12:30 AM
Look at http://supportforums.blackberry.com/t5/Cascades-De
01-03-2013 07:17 AM
I had tried validating the text using onTextChanging, but what I see happening is when the user enters an invalids character it temporarily appears on screen before I remover it which is undesired. Any way to hook in earlier Like on key press?