Hi,
I'm currently struggling with a problem in Winforms databinding, and I'm wondering if somebody has a good idea how to solve this.
My problem is, that I'm using a 3rd-Party WinForms grid to display some data. I'm using a BindingList with objects that implement INotifyPropertyChanged. This grid doesn't support paging, but I really need it because of the data I'm displaying. In addition I'm using the filtering functionality from that grid (is similiar to what e.g. DataView offers).
As I really don't what to do paging first and filtering second I have to find a solution that first does that filter and then if needed the paging.
The UI I need to create is not a problem, but currently I found no solution how to limit the data that goes to the grid, after filtering (so to say how to implement a 2-level filtering).
Any ideas how to solve this?
tia Martin