It could be useful if you add a method to the ValuesManager class in order to set a filed value.
I needed that functionality so I extended ValuesManager and I added the following method and it works perfectly :
Thanks
I needed that functionality so I extended ValuesManager and I added the following method and it works perfectly :
Code:
public native void setValue(String fieldName, String value) /*-{
var self = this.@com.smartgwt.client.core.BaseClass::getOrCreateJsObj()();
self.setValue(fieldName, value);
}-*/;
Comment