It is also possible to re-use the object set to the edit field in grid.
So it is possible to create 1 SelectItem object with some PickListProperties (ie. a drop down grid), and set this object to both the field and the filtereditor:
Code:
SelectItem someSelectItem = new SelectItem(); // ... set all kinds of properties, like a nested grid or whatever. myListGridField.setEditorType(someSelectItem); myListGridField.setFilterEditorType(someSelectItem); //same object passed
Might sound pretty logical, but I was in doubt if that would work.
Leave a comment: