Hi,
using SmartGWT EE 2.3 in FF, when i try to access a listGridField through getField() i get null pointer error. Any idea ?
using SmartGWT EE 2.3 in FF, when i try to access a listGridField through getField() i get null pointer error. Any idea ?
Code:
ListGrid myLG = new ListGrid();
myLG.setDataSource(DataSource.get("DataSource_Template"));
myLG.setAutoFetchData(true);
myLG.getField(1).getTitle();
Comment