SmartGWT version: SmartGWTPro Nightly build 2010-11-22
GWT version: 2.0.3
Browser version: Any.
Hi, I recently switched to a nightly build to fix another problem. However, I'm finding StaticTextItem.setValue() no longer seems to work properly.
The following code:
Works without errors and the "type.getValue()" statement correctly returns "Blah blah".
However, the field is empty in the display and when submitting the form the field is attached to, the value is null as well.
GWT version: 2.0.3
Browser version: Any.
Hi, I recently switched to a nightly build to fix another problem. However, I'm finding StaticTextItem.setValue() no longer seems to work properly.
The following code:
Code:
StaticTextItem type; type.setValue("Blah blah"); Log.debug("Value of type: " + type.getValue());
However, the field is empty in the display and when submitting the form the field is attached to, the value is null as well.
Comment