Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
140
FilterRow Event Not Firing for Custom Filters
posted

I have two FilterConditions that I build and apply to the grid on the fly based on input from the user. I do this because I only want them to be able to filter on two columns (out of 6), and I'd rather not display the whole filter row for just two columns.

The filtering works great. The only snag is that when a row is filtered out as a result of applying these filters, the FilterRow event is not fired. I need to be able to catch the FilterRow event and do some things with the row that was filtered out so that my form displays correctly, so I can't just use the Before/AfterRowFilterChanged events since they don't have references the individual rows that were filtered out.

Can I force the event to be fired? Or else, is there another way to determine when a row is filtered out?