Unplanned
Last Updated: 07 Jun 2024 12:51 by Martin Ivanov

The column group headers are not displayed when the DisplayIndex property of the GridViewColumn objects is set before the control is loaded.

To work this around, you can set the DisplayIndex of the columns after the RadGridView is loaded.

Unplanned
Last Updated: 16 Apr 2024 12:36 by Martin Ivanov

Empty cells appear when the RadGridView contains many cells in the viewport and the view gets resized.

To work this around you can extract and modify the ControlTemplate of GridViewCell, in order to set the MinHeight property of the "PART_ContentPresenter" element to a number close to the RowHeight of the RadGridView control.

Unplanned
Last Updated: 15 Apr 2024 14:35 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Bug Report
0
The CellUnloaded event of RadGridView is not invoked consistent compared to CellLoaded. For example, when you scroll up and down, the CellLoaded event is invoked for each new cell that appears in the view port. However, CellUnloaded is not invoked for cells going outside of the viewport.
Unplanned
Last Updated: 15 Apr 2024 09:00 by Wolfgang
Provide option to set if the grouping is case-sensitive
Unplanned
Last Updated: 11 Apr 2024 05:30 by ADMIN
Introduce a way to set the modifier key used for multi-column sorting.
Unplanned
Last Updated: 13 Mar 2024 11:39 by Martin Ivanov

The cell content gets clipped when the width of the previous column changes at runtime. This happens in the Windows11 and Office2019 themes (possibly in others) and only if the clipped cell is position before the right frozen columns area.

To work this around, you can call the Rebind() method of RadGridView, after the column width changes.

Unplanned
Last Updated: 24 Jan 2024 08:48 by ADMIN
Blind users or users with visual impairments can only hear the unlocalized (english) text in the RadGridView Filter when using ScreenReaders.
Unplanned
Last Updated: 18 Jan 2024 07:45 by Renato
Allow customization of selected unfocused state through RadGridViewRow style.
Unplanned
Last Updated: 29 Nov 2023 14:34 by Martin Ivanov

The vertical scrolling seems to become very slow and even unresponsive, when the following conditions are met:

  • left and right frozen columns count is 0
  • the summary width of all columns is smaller than the width of the RadGridView element

To minimize the issue, you can set the GroupRenderMode property of RadGridView to Nested.

Unplanned
Last Updated: 09 Oct 2023 11:35 by Antonio
 The filtering stops working after the previous filters are cleared and Windows 8 theme is used.
Unplanned
Last Updated: 28 Aug 2023 09:25 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
1
Add HeaderStringFormat property in the GridViewColumn class. This will allow the developer to use a string format, similar to the ContentStringFormat of ContentControl.
Unplanned
Last Updated: 24 Aug 2023 07:42 by Stenly
Applying alternation count does not alternate rows correctly when having both pinned/unpinned rows.
Unplanned
Last Updated: 05 Dec 2023 16:01 by ADMIN
Created by: Stenly
Comments: 2
Category: GridView
Type: Feature Request
2
Add support for binding to properties of type GUID.
Unplanned
Last Updated: 25 Jul 2023 14:35 by Martin Ivanov

Currently, if RadGridView is bound to a INotifyCollectionChanged collection and the collection class raises the CollectionChanged event with NotifyCollectionChangedAction set to Add, Remove or Insert, RadGridView is not updating its items properly when the OldItems or NewItems collections contain more than 1 items.

Add support for this scenario.

Unplanned
Last Updated: 25 Jul 2023 11:06 by Martin Ivanov
Copied values are not pasted in the proper cells. This makes it seems that the pasted values occur in random cells. 
The issue occurs when the ClipboardPasteMode enum property contains the AllSelectedRows value and the SelectionUnit property is Cell or Mixed.

To work this around, avoid using the AllSelectedRows ClipboardPasteMode. Or the SelectionUnit values Mixed and Cell.
Unplanned
Last Updated: 30 Jun 2023 07:55 by Martin Ivanov
Currently, the position and size of the merged cell can be fetched via the numeric position and length properties of the MergedCellInfo class. This allows you to implement custom code that iterates the Columns collection of RadGridView and extractс the parent GridViewColumn(s).

Add a property that allows you to get the columns hosting the merged cell. The property should be able to get a single column (when the cells are merged vertically) and multiple columns when (when merged horizontally).
Unplanned
Last Updated: 28 Jun 2023 08:14 by alitvinov
Suppose GridView has 4 columns A, B, C (invisible), D.
Copy all cells below the visible columns A B and D.
Pasting the values results in incorrectly pasted empty rows and empty column header around the copied cells values.
Unplanned
Last Updated: 02 Jun 2023 12:07 by ADMIN
Created by: alex
Comments: 1
Category: GridView
Type: Feature Request
1

Hello,

Regarding this forum question, it will be good if you add the attached property VisibleColumnsCount or IsAnyColumnVisible so I can hide the rows when there are 0 columns. Please read the following link for full information:

https://www.telerik.com/forums/radgridview---hide-rows-when-columns-are-not-visible

 

I have a license ok behalf my company

Unplanned
Last Updated: 18 May 2023 08:23 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
1

Currently, the GridViewMergedCell cannot be selected. Allow selecting the merged cells via the UI or code. 

At the moment RadGridView has only a CurrentMergedCell property.

Unplanned
Last Updated: 17 May 2023 12:37 by Vladimir

In the following scenario:

<telerik:RadGridView x:Name="clubsGrid" ItemsSource="{Binding Foos}" AutoGenerateColumns="False">
	<telerik:RadGridView.Columns>
		<telerik:GridViewDataColumn DataMemberBinding="{Binding Foo1}" MinWidth="100" />
		<telerik:GridViewDataColumn DataMemberBinding="{Binding Foo2}" MinWidth="100" />
		<telerik:GridViewDataColumn DataMemberBinding="{Binding Foo3}" Width="*" />
		<telerik:GridViewDataColumn DataMemberBinding="{Binding Foo4}" MinWidth="100" />
		<telerik:GridViewDataColumn DataMemberBinding="{Binding Foo5}" MinWidth="100" />
		<telerik:GridViewDataColumn DataMemberBinding="{Binding Foo6}" MinWidth="100" />
	</telerik:RadGridView.Columns>
</telerik:RadGridView>

<DataGrid ItemsSource="{Binding Foos}" AutoGenerateColumns="False" Grid.Row="1">
	<DataGrid.Columns>
		<DataGridTextColumn Binding="{Binding Foo1}" MinWidth="100" />
		<DataGridTextColumn Binding="{Binding Foo2}" MinWidth="100" />
		<DataGridTextColumn Binding="{Binding Foo3}" Width="*" />
		<DataGridTextColumn Binding="{Binding Foo4}" MinWidth="100" />
		<DataGridTextColumn Binding="{Binding Foo5}" MinWidth="100" />
		<DataGridTextColumn Binding="{Binding Foo6}" MinWidth="100" />
	</DataGrid.Columns>
</DataGrid>

in the native DataGrid after the Width of Foo4 column is increased towards Foo3, then the Width of Foo5/Foo6 columns can also be increased. We can implement similar behavior in the RadGridView as well. 

 

1 2 3 4 5 6