I have an sfGrid with persistence enabled.
I do some custom operations when filtering. for that I listen to OnActionBegin event.
When I reload the page, the persistence feature remembers my filters. All good so far.
My issue is that the persistence-remembered filters are applied to the grid without my custom actions being executed.
I would like to retrieve that information so I can execute my custom code.
How can I get the filter values (column, filter type, filter body) for that?
I tried calling Grid.GetPersistData() at OnAfterRenderAsync(), but the method didn't return the the info I'm looking for.