Good morning to all,
there's a way to filter the grid according to cell color or row color?
Thank's for attention
Daniele
Good morning to all,
there's a way to filter the grid according to cell color or row color?
Thank's for attention
Daniele
The grid.OnCustomFilter event can be used to write custom filtering.
In this event, you set via the event parameter AcceptRow whether a specific row needs to filtered or not. You can in this event handler check a cell color to steer from there whether AcceptRow is true or false.