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
1070
RecordFilterChanged event applied to another grid's record
posted

I have 2 grids with the same column layout side by side. I have filters enabled on the left grid, and when records are filtered out, I move them to the right side grid. I use the RecordFilterChanged event and iterate through the records calling e.RecordFilter.MeetsCriteria(record) to determine which records to move to the right side grid. Ie:

if (!e.RecordFilter.MeetsCriteria(leftSideRecord))

   //move to the right side grid

Is there a way to determine which records to move back to the left side grid when the filter changes? Eg. I clear one of my filters on the left side, and I'd like to evaluate the records on the right side to determine if any can now be moved left. I don't see any obvious way to get all the applied filters on a grid so that I can evaluate my right side records.

Parents Reply Children
No Data