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; }
This behavior is reproducible when the SelectionUnit property of the RadGridView is set to "FullRow". SelectedCells collection is not of the selected row updated when new columns are added runtime. For example, you have selected the first row which has 3 cells. Then you add 2 new columns. Now the row has 5 cells but the selected cells collection still have 3. A possible workaround which can be used is to reset the SelectedItem property of the RadGridView. var selectedItem = testGrid.SelectedItem; testGrid.SelectedItem = null; this.testGrid.Columns.Add(new GridViewDataColumn() { Header = "Value3", DataMemberBinding = new Binding("Value3"), Width = 100 }); this.testGrid.Columns.Add(CreateColumn("Value4", "Value4")); testGrid.SelectedItem = selectedItem;