GridColumnFilter
GridColumnFilter
You can create filter in all grid columns. You need to specify the column name and the type of filter you would like for this column.
The following types are available:
text: Will show a text input field for the search criteria.
select: A selection for all available options is shown.
multiSelect: like select-option. It is possible to select multiple entries.
If the grid is configured for Server Side Paging additional options are available.
serverSideMinInputLength: Allows to set a minimum character count for user input, before the search is triggered.
The SQL statement must return a list consisting of 2 columns: id and text. The id value will be used as the search criteria. The text value will be shown to the user as option. The parameter “columnSerachValue” will contain the current user input.
Example of a valid SQL statement:
Last updated
Was this helpful?