Announcement

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

    ValuesManager.setValue()

    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 :

    Code:
    public native void setValue(String fieldName, String value) /*-{
    	    var self = this.@com.smartgwt.client.core.BaseClass::getOrCreateJsObj()();
    	    self.setValue(fieldName, value);
    	}-*/;
    Thanks

    #2
    Added to SVN,

    Thanks,
    Sanjiv

    Comment

    Working...
    X