Version: v11.0p_2017-02-11/PowerEdition Deployment (built 2017-02-11)
Hi,
I am saving the listgrid filter state and on loading the grid again i apply the filter state.
Columns for which the filter is a text item, the filter values appear in the filter editor rowl.
However, there are few columns for which i have set the filter to be a select item by using below code:
SelectItem filterSelectItem = new SelectItem();
filterSelectItem.setDisplayField(ClientConstants.MATERIAL_DS_MATERIAL_NAME);
filterSelectItem.setValueField(ClientConstants.MATERIAL_DS_MATERIAL_NAME);
filterSelectItem.setOptionDataSource(materialDs);
filterSelectItem.setAutoFetchData(true);
listgridfield.setFilterEditorType(filterSelectItem);
While setting the filter criteria those filters which are dropdown are not getting populated with the filter value. How can i set the value in this case
Hi,
I am saving the listgrid filter state and on loading the grid again i apply the filter state.
Columns for which the filter is a text item, the filter values appear in the filter editor rowl.
However, there are few columns for which i have set the filter to be a select item by using below code:
SelectItem filterSelectItem = new SelectItem();
filterSelectItem.setDisplayField(ClientConstants.MATERIAL_DS_MATERIAL_NAME);
filterSelectItem.setValueField(ClientConstants.MATERIAL_DS_MATERIAL_NAME);
filterSelectItem.setOptionDataSource(materialDs);
filterSelectItem.setAutoFetchData(true);
listgridfield.setFilterEditorType(filterSelectItem);
While setting the filter criteria those filters which are dropdown are not getting populated with the filter value. How can i set the value in this case
Comment