09-26-2009 04:12 PM
Hi everyone: The application's screen has 5 BasicEditField 's
Before submitting the data, the user may want to edit one of the entries.
When scrolling UP with the trackball, the cursor appears AFTER THE LAST char in the field.
When scrolling DOWN with the trackball, the cursor appears AT THE FIRST char in the field.
This inconsistancy causes new users to make errors -- is there a way to have it behave the same in both directions?
Thanks.
Solved! Go to Solution.
09-26-2009 04:47 PM
You might try setting of a FocusChangeListener and explicitly setting the cursor position at '0' when the field get's focus.
See FocusChangeListener and BasicEditField.setCursorPosition()
09-26-2009 11:39 PM
Thank you Rex:
I used xxxxxxxxxxxxxxx.setCursorPositi
instead of BasicEditField..setCursorPosition()