Hi,
We have an issue while inputting some East Asian characters into textItem in IE9.
We are using SmartClient_v82p_2012-10-09_PowerEdition, and the input method we are using is
Chinese (Simplified, PRC) - Chinese Simplified QuanPin(version 6.0).
Steps to Reproduce:
1. Input any Chinese character. (For example, press 'q' first, then select any character from the list by the index, e.g. 1).
2. Press 'w' to show the list of options we are going to input.
At this moment, the value of the text item (by using getValue() method) is "" in IE even the value we input in step one is presented in this field.
In our scenario, we need to get the value of the text item at this moment, but we get an empty string instead of the correct value. It works well in Firefox and Safari.
Please try the following script and check log info. Thanks!
The log shown in console:
17:18:48.800:TMR7:WARN:Log:value is null
17:18:54.080:TMR4:WARN:Log:value is
17:18:59.295:TMR2:WARN:Log:value is 瑁
17:19:09.258:IBLR4:WARN:Log:value is 瑁挖
The second line is the log when we press ‘w’ in step 2, at this moment, the value of this text field is “ ”.
We have an issue while inputting some East Asian characters into textItem in IE9.
We are using SmartClient_v82p_2012-10-09_PowerEdition, and the input method we are using is
Chinese (Simplified, PRC) - Chinese Simplified QuanPin(version 6.0).
Steps to Reproduce:
1. Input any Chinese character. (For example, press 'q' first, then select any character from the list by the index, e.g. 1).
2. Press 'w' to show the list of options we are going to input.
At this moment, the value of the text item (by using getValue() method) is "" in IE even the value we input in step one is presented in this field.
In our scenario, we need to get the value of the text item at this moment, but we get an empty string instead of the correct value. It works well in Firefox and Safari.
Please try the following script and check log info. Thanks!
Code:
isc.DynamicForm.create({ ID: "exampleForm", width: 250, fields: [ {title: "Username", type: "text", change: function(form, item, newValue, oldValue) { isc.logWarn("value is "+ this.getValue());} } ] });
17:18:48.800:TMR7:WARN:Log:value is null
17:18:54.080:TMR4:WARN:Log:value is
17:18:59.295:TMR2:WARN:Log:value is 瑁
17:19:09.258:IBLR4:WARN:Log:value is 瑁挖
The second line is the log when we press ‘w’ in step 2, at this moment, the value of this text field is “ ”.
Comment