When the ItemsSource of the RadGridView is reset, disctinct values remain checked in the Filtering Popup.
For a workaround, check the attached project.
Group rows which are not present in the view are not visualized when the window is maximized.
A possible solution here is to set the GroupRenderMode property to Flat.
To reproduce this:
Users reported that the Text Search feature is misbehaving for certain columns in their grid.
We found that that if we take the Telerik example “DeferredSearching_WPF.sln", and change the "int" field+property to "long" , text search for a number indeed falls over.
Can you reproduce this?
Kind regards, Bertus Distributie ICT
Change the Default Selected Filter Operator:
https://docs.telerik.com/devtools/wpf/controls/radgridview/filtering/how-to/howto-change-the-default-selected-filter-operator
This doesn't work for boolean columns, if the property "ShouldGenerateFieldFilterEditors" of the column is set to "True".
Please see the attached example.
*** The fix for this issue will be available with the next LIB (version 2018.3.1217) expected on Monday, December 17.
The fix for this issue will be available with the next LIB (version 2018.3.1217) expected on Monday, December 17.
A possible workaround is to show and hide the columns. foreach (GridViewColumn col in TestGridView.Columns) { bool visibility = col.IsVisible; col.IsVisible = true; col.IsVisible = visibility; }