Hello,
I would like to disable a specific radio button in a radioGroupItem object. The method "setValueDisable(Object value,Boolean disable)" allows to do that normally, but I can't find how use it. This code returns me a fatal error :
RadioGroupItem groupItem = new RadioGroupItem();
groupItem.setValueMap("radio 1","radio 2");
groupItem.setValueDisabled("radio 2", false);
The begining of returned error is :
com.google.gwt.core.client.JavaScriptException: (TypeError): self.setValueDisabled is not a function
fileName: http://localhost:8888
lineNumber: 3 etc...
Someone have an idea of the problem?
Thanks a lot
I would like to disable a specific radio button in a radioGroupItem object. The method "setValueDisable(Object value,Boolean disable)" allows to do that normally, but I can't find how use it. This code returns me a fatal error :
RadioGroupItem groupItem = new RadioGroupItem();
groupItem.setValueMap("radio 1","radio 2");
groupItem.setValueDisabled("radio 2", false);
The begining of returned error is :
com.google.gwt.core.client.JavaScriptException: (TypeError): self.setValueDisabled is not a function
fileName: http://localhost:8888
lineNumber: 3 etc...
Someone have an idea of the problem?
Thanks a lot
Comment