Hi,
Is there a way to allow multiple selection for dropdown in FilterEditor?
We have a "Status" column in a ListGrid with possible values "PROCESSING, COMPLETE, FAILED, READY/PAYMENT, ". Our requirement is to allow the user to filter on more than one status at a time.
I can do this in code and the multiple values appear as comma separated.
Can someone please let me know if I can get the dropdown in FilterEditor to allow multiple selection to achieve this?
Thanks.
SmartGWT version = 2.2
Browser = Firefox 3.6.10 and IE 6
Is there a way to allow multiple selection for dropdown in FilterEditor?
We have a "Status" column in a ListGrid with possible values "PROCESSING, COMPLETE, FAILED, READY/PAYMENT, ". Our requirement is to allow the user to filter on more than one status at a time.
I can do this in code and the multiple values appear as comma separated.
Code:
final Criteria filterEditorCriteria = new Criteria(); filterEditorCriteria.addCriteria("status", "COMPLETE"); filterEditorCriteria.addCriteria("status", "PROCESSING"); elfGrid.setFilterEditorCriteria(filterEditorCriteria); elfGrid.filterByEditor();
Thanks.
SmartGWT version = 2.2
Browser = Firefox 3.6.10 and IE 6
Comment