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
25
GetDefaultView Filter
posted

In version 8.1 it seems that xamDataGrid ignore the Filter on the DefaultView

     ICollectionView view = CollectionViewSource.GetDefaultView(this.ItemsSource);
            if (view != null)
            {
                view.Filter += (obj) =>
                {
                    return obj.ToString() == "Hello World";
                };
            }
            view.Refresh();

 Anyone manage to get this working?  It work fine using a ListBox.