I have created custom row filtering.
TelerikDateRangePicker is used inside FilterCellTemplate.
Based on the examples from the article -> https://demos.telerik.com/blazor-ui/grid/custom-filter-row <- select start, end dates and clear button handlers was implemented.
But I found that for each handler (select start or end date) new instance of FilterCellTemplateContext has been used.
And when I try to get selected values in OnRead method from GridReadEventArgs -> Request.Filters, filters do not contain selected date range.
Could someone please explain why there are a lot of instances of FilterCellTemplateContext (more that one on each method call)?
How can I get selected date range values in OnRead methods from GridReadEventArgs?
Thanks!