I want to be capable to filter the records loaded in my TcxGrid
component, I have GridMode
because the grid is kinda slow to show the records on my application form, but this mode doesn't let me use the filters of the column (just the default ones).
I found this on the oficial forums:
Filtering can be implemented by setting the Data Controller's Filter.AutoDataSetFilter property value to True. This way, the filter expression will be automatically applied to the underlying dataset. In the meantime, please note that the Grid working in Grid mode, does not create a list of the possible filter items in the column dropdown filter list. However, you may implement this yourself within the column's OnGetFilterDisplayText or OnGetFilterValues events or the Data Controller's OnGetValueList event. Please refer to the ExpressQuantumGrid's documentation to get more information about these events and how to use them.
But I can't figure out how to do that, since I can't find those documentation. Any help will be appreciated