Unplanned
Last Updated: 11 Mar 2021 17:06 by ADMIN
Currently, the splitter is drawn with few pixels and a background color based on the current Telerik theme. Add an API like a Style or another type of property that allows you to change the default color and width of the splitter.
Unplanned
Last Updated: 23 Feb 2021 08:11 by ADMIN
Created by: Dinko
Comments: 0
Category: GridView
Type: Feature Request
2

You are able to resize columns using the columns gripper. The corresponding group will be automatically resized. We can provide a way to resize the column groups. The columns inside the group will be automatically resized with the group.

Completed
Last Updated: 23 Feb 2021 07:59 by ADMIN
Release LIB 2019.3.1118
ADMIN
Created by: Dilyan Traykov
Comments: 2
Category: GridView
Type: Feature Request
6

			
Completed
Last Updated: 22 Feb 2021 16:35 by ADMIN
Release R1 2021 SP1

In this particular case, the DisplayIndex properties of the parent and child grid are bound to property from our ViewModel. When the parent grid columns are reordered runtime, the columns of the child grid are also reordered. But when sorting is performed by clicking on a column header, an exception is thrown.

Completed
Last Updated: 18 Feb 2021 15:23 by ADMIN
Release R1 2021 SP
Replacing all Columns, Group, and Sort descriptors while keeping the same ItemsSource causes the grid rows to have the wrong heights.
Completed
Last Updated: 18 Feb 2021 12:16 by ADMIN
Release R1 2021 SP
When the items in the bound collection are replaced while the RadGridView is sort and group, ArgumentOutOfRangeException is thrown.
Unplanned
Last Updated: 18 Feb 2021 08:33 by ADMIN

At the moment the GridViewNewRow can be placed at the top or at the bottom. Placing it between the rows will require new virtualization mechanism. 

Completed
Last Updated: 17 Feb 2021 12:19 by ADMIN
Release R1 2021 SP
ArgumentException: ''' is not a valid value for property 'Name'.' Such an exception is thrown when clicking on the Add New Row button when the RadGridView is populated with objects that return null in their ToString method. 
Won't Fix
Last Updated: 10 Feb 2021 09:59 by ADMIN
The RadGridView's is bound to an empty DataView and grouped by a GridViewComboBoxColumn. When adding items during runtime, setting the SelectedItem in code or selecting through the UI -> the SelectedItem remains null. 
Completed
Last Updated: 08 Feb 2021 11:40 by ADMIN
Release LIB 2021.1.208 (2/8/2021)
 An error is thrown while exporting RadGridView using the SpreadStreamExport and a GroupDescriptor is added.
Unplanned
Last Updated: 03 Feb 2021 08:28 by JUI CHENG
ADMIN
Created by: Stefan
Comments: 1
Category: GridView
Type: Feature Request
3

			
Completed
Last Updated: 27 Jan 2021 13:53 by ADMIN
Release LIB 2021.1.201

Changing the TextAlignment property of the GridViewExpressionColumn doesn't refresh the cells, thus the change is not visible in the UI.

To work this around, remove and add again the corresponding column in the Columns collection of RadGridView. Or define a CellTemplate and use a TextBlock control with its TextAlignment bound to the column's property.

<telerik:GridViewExpressionColumn.CellTemplate>
	<DataTemplate>
		<TextBlock Text="{Binding}" 
				   TextAlignment="{Binding RelativeSource={RelativeSource AncestorType=telerik:GridViewCell}, Path=Column.TextAlignment}"  />
	</DataTemplate>
</telerik:GridViewExpressionColumn.CellTemplate>
 

Completed
Last Updated: 27 Jan 2021 13:04 by ADMIN
Release LIB 2021.1.201
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Bug Report
0

Memory leak appears when exporting to Xlsx and Pdf formats.

To work this around, you can call one of the export methods GridViewDataControlExportExtensions with empty arguments.

Workbook workbook = this.gridView.ExportToWorkbook();
try
{
	GridViewDataControlExportExtensions.ExportToWorkbook(new RadGridView(), new GridViewDocumentExportOptions());
	GridViewDataControlExportExtensions.ExportToWorkbook(null);
}
catch (ArgumentException)
{
}        

Unplanned
Last Updated: 17 Dec 2020 11:52 by ADMIN
Created by: Heiko
Comments: 2
Category: GridView
Type: Feature Request
2
The GridViewSelectColumn is a very nice and useful feature, especially the possibility to select all items with just one click on the header. It would be great if there was the same functionality for the group header. So clicking on a checkbox in group header will select all items in this group (only). I know there are some examples (many years old) of how to do this, but it would be much better if it worked out-of-the-box.
Unplanned
Last Updated: 10 Nov 2020 11:13 by ADMIN
We can implement drag-scroll behavior when dragging column across the headers section of the columns.
Declined
Last Updated: 09 Nov 2020 14:55 by ADMIN

I am using a RadGridView to display appointments. I am adding paging to the control with RadDataPager. I am setting the ItemSource property for the RadGridView to {Binding Path=PagedSource, ElementName=unscheduledWorkOrdersRadDataPager }. I am then overriding the ConvertDraggedData(object data) method and using the DataObjectHelper class in order to obtain data from the object data parameter and then setting the returned IEnumerable<IOccurence> accordingly.

The problem is that whenever I added paging to the RadGridView. The DataObjectHelper is not able to properly retrieve the dragged data from the object data parameter.

Completed
Last Updated: 09 Nov 2020 14:20 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
When a GridViewRow has a validation error, a ToolTip with the error will appears on mouseover. If we scrolled the RadGridView, which has rows with errors, the tooltip starts to appear on valid rows. This behavior is reproducible when using the RowValidating event to validate the data.
Completed
Last Updated: 09 Nov 2020 13:27 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
ADMIN
Created by: Ivan Ivanov
Comments: 0
Category: GridView
Type: Bug Report
3
As Windows application use a common clipboard, there is a potential risk for causing a ComInterop exception while copying data from RadGridView. Workaround: Process exceptions in application logic
Completed
Last Updated: 06 Nov 2020 14:46 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
The exception message is: "... is not a valid metadata type for type filtering operations. Type filtering is only valid on entity types and complex types." The exception is observed when using AggregateFunctions and setting up the data with EntityFramework. 
Completed
Last Updated: 04 Nov 2020 13:00 by ADMIN
Release LIB 2020.3.1109 (11/09/2020)
The selection inside the cells of the GridViewMultiColumnComboBoxColumn is not refreshed when its ItemsSource is updated during runtime.