Hello dear developers.
For some time now, in my ListGrid, the filter field has become uneditable.
I have noticed that this manifests itself when I do not edit a table column.
I now bypass this error in this way.....
but I do not think that this solution will suit everyone.
SmartClient Version SNAPSHOT_v12.1d_2019-12-01
For some time now, in my ListGrid, the filter field has become uneditable.
I have noticed that this manifests itself when I do not edit a table column.
Code:
ListGridField prjUserName = new ListGridField(CONSTANT._NAME);
prjUserName.setCanEdit(false);
Code:
FormItem filterEditor = new FormItem();
filterEditor.setCanEdit(true);
ListGridField prjUserName = new ListGridField(CONSTANT._NAME);
prjUserName.setCanEdit(false);
prjUserName.setFilterEditorProperties(filterEditor);
SmartClient Version SNAPSHOT_v12.1d_2019-12-01
Comment