Completed
Last Updated: 31 Jan 2019 14:24 by ADMIN

To reproduce this:

  1. Set the ShowToolTipOnTrimmedText property of RadGridView to True.
  2. Hover a cell with trimmed text.
  3. Before the tooltip shows, move the mouse quickly, outside of the RadGridView control.
  4. Regardless of the fact that the mouse cursor is outside of the RadGridView control, the tooltip showing is not canceled and it shows after a second.

To resolve this, set the ShowToolTipOnTrimmedText of the gridview columns instead of the RadGridView control.
Completed
Last Updated: 22 May 2019 12:02 by ADMIN

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

Completed
Last Updated: 17 Dec 2018 11:43 by ADMIN

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.

Completed
Last Updated: 09 Mar 2023 16:59 by ADMIN
  • Open the GridView examples
  • In the available examples, select "Selection and Usability | Row Details"
  • Select a row in the grid view
  • In the external Details Presenter, select : nothing is displayed in the bottom.
  • You have to select another row and then come back to show the detail.

 

The fix for this issue will be available with the next LIB (version 2018.3.1217) expected on Monday, December 17.

Won't Fix
Last Updated: 22 Feb 2019 15:56 by ADMIN


The fix for this issue will be available with the next LIB (version 2018.3.1224) expected on Monday, December 24.
Completed
Last Updated: 01 Feb 2019 12:11 by ADMIN
Characters are lost when pressing multiple keyboard keys in quick succession.
Unplanned
Last Updated: 21 Nov 2018 10:34 by ADMIN
Allow customizing the FieldFilterControl shown under the column header when the FilteringMode is set to FilterRow. Currently, you can customize this only via an implicit style or by looking into the gridview's visual tree in code. It would be useful if you can define a style per column.
Completed
Last Updated: 07 Nov 2018 12:52 by ADMIN
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;
			}
Completed
Last Updated: 01 Nov 2018 09:19 by ADMIN
Completed
Last Updated: 13 Mar 2024 09:45 by ADMIN
Release 2024.1.130 (2024 Q1)
Completed
Last Updated: 18 Feb 2019 11:12 by ADMIN
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;
Unplanned
Last Updated: 31 Jul 2019 12:50 by Alain
Completed
Last Updated: 25 May 2023 13:34 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: GridView
Type: Feature Request
6

			
Completed
Last Updated: 12 Apr 2019 11:53 by ADMIN
Release LIB 2019.1.415 (04/15/2019)
Completed
Last Updated: 11 Oct 2018 13:25 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 1
Category: GridView
Type: Bug Report
1

			
Completed
Last Updated: 06 Dec 2018 09:08 by ADMIN
Created by: hart
Comments: 0
Category: GridView
Type: Feature Request
3
radGridView has a feature to provides a suggest and append feature.  Currently, there is the ability for the end user to inadvertently close this window.  Please provide the opportunity via a property to disable the ability to close the search window.  (currently, I am hooking the SearchPanelVisibilityChanged event, and forcing showSearchPanel = true at all times.

Scheduled for: 
The exposed property (SearchPanelCloseButtonVisibility) will be available with LIB (version 2018.3.1210) published on Monday, 10-th December, 2018.
Completed
Last Updated: 15 Oct 2018 05:45 by ADMIN