FlexGridFilter Optimizations
The wijmo.grid.filter module provides a FlexGridFilter class that adds an Excel-style filtering UI to each column. The FlexGridFilter provides two types of filters: value filter and condition filter.
The value filter editor contains a list of unique values for the user to choose from. If the grid contains a lot of data, this list of unique values may take a while to generate. Furthermore, if the list contains too many values, it is not very useful. A condition filter may be more appropriate in such cases.
This sample shows how you can optimize the value filters in three ways:
- uniqueValues: The 'Rating' column filter specifies the list of possible unique values in the column, so the filter does not have to scan the data to build the list.
- maxValues: The 'Sales' column filter specifies that the list should show up to 20 values only. You may use the filter field in the editor to select which values you are interested in.
- filterType: The 'Expenses' column filter specifies that the only filter type to be used is condition. A value filter is not even displayed for this column.