Hi,
After upgrading to SmartGWT 13 the following code has stopped working for us:
ListGrid grid = new ListGrid();
grid.setShowFilterEditor(true);
ListGridField field = new ListGridField("Field", 100);
TextItem textItem = new TextItem();
textItem.setPrompt("Text Format");
field.setFilterEditorProperties(textItem);
grid.setFields(field);
We're expecting to see "Text Format" prompt when hovering over Filter Editor for Field, but nothing comes up.
This used to work in version 6.1
Not sure if there's a new way to achieve same result..
Thank you!
After upgrading to SmartGWT 13 the following code has stopped working for us:
ListGrid grid = new ListGrid();
grid.setShowFilterEditor(true);
ListGridField field = new ListGridField("Field", 100);
TextItem textItem = new TextItem();
textItem.setPrompt("Text Format");
field.setFilterEditorProperties(textItem);
grid.setFields(field);
We're expecting to see "Text Format" prompt when hovering over Filter Editor for Field, but nothing comes up.
This used to work in version 6.1
Not sure if there's a new way to achieve same result..
Thank you!