0

There is a TextField populated by a value from a RecordStore , and the carret position is at 0 when navigating to the TextField. I need to go to a certain character position within the TextField's text. But when I click the right navigational button or when I press a character key then something like a tooltip with a text Abc is displayed automatically at the right of the TextField.

So how to make this "Abc" disappear ? Here is a captured image of the situation: enter image description here

bharath
  • 14,283
  • 16
  • 57
  • 95
pheromix
  • 18,213
  • 29
  • 88
  • 158

1 Answers1

2

I found the solution : I added this code setInputModeOrder(new String[]{"Abc"});

pheromix
  • 18,213
  • 29
  • 88
  • 158