I am trying to manually remove a possible choice from a SelectItem (the choices are originally defined in a ds.xml-file). (It should be removed under certain conditions.
So, i thought i'd call "getClientPickListData", However, i get a strange error message in the log:
According to the javadoc, the method exists. I have initialized the form with fields etc., and the field is found
Anybody knows what i am doing wrong? Should i remove a choice in the selectitem another way?
So, i thought i'd call "getClientPickListData", However, i get a strange error message in the log:
Code:
com.google.gwt.core.client.JavaScriptException: (TypeError) : self_0_g$.getClientPickListData is not a function
Code:
SelectItem select = (SelectItem) form.getField("itype"); Object clientPickListDataxx = select.getClientPickListData();
Comment