Hi there,
I use the lastest smartGWT version and Safari MacOS.
Iīm having the following problem:
I get the error message 'is not a function' when trying to call the method getLength() in the object SelectItem!
I use the lastest smartGWT version and Safari MacOS.
Iīm having the following problem:
I get the error message 'is not a function' when trying to call the method getLength() in the object SelectItem!
Code:
SelectItem mandantSel = new SelectItem("MandantSelection"); mandantSel.addDataArrivedHandler(new DataArrivedHandler() { @Override public void onDataArrived(DataArrivedEvent aEvent) { ResultSet resultSet = aEvent.getData(); int profilesCount = resultSet.getLength(); // ERROR! }
Comment