Hi,
I have added onChange handler to TextAreaItem as shown below:
And changed my keyboard language to Japanese and tried to type some words.
It doesn't fire the onChange event, but same works with English language.
And also after typing with Japanese if i try to resize the window text area loses the data and clears everything what i typed (might be related to above)
Please help.
Thanks in Advance.
I have added onChange handler to TextAreaItem as shown below:
Code:
TextAreaItem title = view.getTitle(); registerHandler(titleItem.addChangeHandler(new ChangeHandler(){ @Override public void onChange(ChangeEvent event) { tempTitle = (String)event.getValue(); }}));
It doesn't fire the onChange event, but same works with English language.
And also after typing with Japanese if i try to resize the window text area loses the data and clears everything what i typed (might be related to above)
Please help.
Thanks in Advance.
Comment