Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Not able to get the chnaged values on onChange event with TextAreaItem control with Japanese language

    Hi,

    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();
                }}));
    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.
    Last edited by sibasish.palo; 15 Jun 2018, 05:10.

    #2
    Hi,

    Can someone please help on this.

    Thanks!!

    Comment


      #3
      We've tried your exact code and can't reproduce either issue. It doesn't make a lot of sense that this would somehow happen just for Japanese locale, especially the issue with the value simply being cleared. We suspect that you have a browser plugin that is creating the issue, or perhaps you are using a pre-release version of whatever browser you're testing with.

      You should also update to the latest patched version of SmartGWT (see smartclient.com/builds) before testing again.

      Comment

      Working...
      X