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
2170
UltraGrid Row Filtering
posted

I am using the "BeforeRowFilterChanged" event to capture the filter condition entered by the user. I then pepare my own db query and execute it as my db table my have a million records. The problem I am having is I am batching x number of records at a time and the offend event of the bindingsource will continue to fire until all the records are retrieved. I am assuming this is because the grid needs to grab all records in order to properly apply the filter. Since I am handling the filter can I tell the grid this besides using e.Cancel to cancel the filter event? If I use e.Cancel then my column filter icon does not show that a filter is current on the column.