Hi guys,
SmartGWT: PE 3.1p.2013-01-31
GWT: 2.4.0
OS: Linux
Browser: any
item1.setValue(item2.getValue()) ends up with something like:
See http://forums.smartclient.com/showthread.php?t=19443.
Problem is that SmartGWT has toString() invocation inside of setValue method:
Workaround: item1.setValue((String)item2.getValue());
The problem is insane because it happens only on our Linux integration servers and not locally on Windows machines.
please fix ASAP. Thanks.
Cheers,
Alexey
SmartGWT: PE 3.1p.2013-01-31
GWT: 2.4.0
OS: Linux
Browser: any
item1.setValue(item2.getValue()) ends up with something like:
Code:
item1:{
"0":"E",
"1":"U",
"2":"R",
cM:{
"1":1,
"372":1,
"375":1,
"379":1
}
}
Problem is that SmartGWT has toString() invocation inside of setValue method:
Code:
public void setValue(Object value) {
if (value == null) {
doSetValue(null);
} else if (value instanceof CharSequence || value instanceof Character) {
setValue(value.toString());
} else if (value instanceof Number) {
...
The problem is insane because it happens only on our Linux integration servers and not locally on Windows machines.
please fix ASAP. Thanks.
Cheers,
Alexey
Comment