Hi to all,
I need your help
In my application there is a Form with the "refresh" method that I call before to view the Form.
In this form there are two TextField (It is class of Polish Framework that extends StringItem) as follows:
Code:
private TextField subject;
private TextField text;
{.........
//#style .formItemNoDirectInput
subject = new TextField(null, null, 255, TextField.ANY);
subject.setInputMode(TextField.MODE_NATIVE);
subject.setShowInputInfo(true);
//#style .formItemNoDirectInput
text = new TextField(null, null, 50000, TextField.ANY);
text.setInputMode(TextField.MODE_NATIVE);
text.setShowInputInfo(false);
........
}
I want to clear the "native input-system" before my application shows the Form but I don't know how to have a referece to the native input-system of the underlying OS.
It is necessary because the "native input-system" always shows the old text, written by the user.
thank you in advance
Luigi

Reply With Quote



