Completed
Last Updated: 20 May 2021 06:30 by ADMIN
Release LIB 2021.2.525 (25/05/2021)
In this case, the business object has properties with similar names "A" and "a". The default binding does not respect upper and lower cases for similar naming.
Declined
Last Updated: 13 May 2021 10:37 by ADMIN

Hello, 

I believe that I have found a bug with the delete keyboard functionality using the delete key. Below are the steps to reproduce:

  1. Click on any row of the grid view.
  2. Observe the row is selected.
  3. Click any cell in the selected row to enter into edit mode.
  4. Exit edit mode using escape.
  5. Observe the row is still selected.
  6. Now click the delete button.
  7. Observe the delete operation doesn't work.

 

Note that if the user selects a new row and then selects the previous row the delete works. 

Demo to illustrate is in SDK sample browser.

Grid View Examples - Custom Keyboard Command Provider

Please let me know if you need any additional information.

Thank you.

Completed
Last Updated: 26 Apr 2021 09:05 by ADMIN
Release LIB 2020.3.1311 (1/11/2021)
In this scenario, we have two grids in different windows on different threads. When reordering columns in the first grid and reordered rows in the second will lead to an exception: System.InvalidOperationException: The calling thread cannot access this object because a different thread owns it.
Unplanned
Last Updated: 15 Apr 2021 07:54 by Moon
Created by: Dinko
Comments: 1
Category: GridView
Type: Feature Request
2
For example, we can create the SUM() function for the cells in the ViewPort.
Completed
Last Updated: 02 Apr 2021 05:13 by ADMIN
Release LIB 2021.1.405 (5/04/2021)
Currently, when setting ShowToolTipOnTrimmedText, the duration of the displayed tooltip is hardcoded to 5 seconds. Add an API to change the duration.
Unplanned
Last Updated: 22 Mar 2021 18:30 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Feature Request
2
The row arrangement is implemented correctly, but because of rounding errors, gaps and rows overlapping may appear during the WPF render phrase. This happens if the boundaries of the row containers use too high precision for its values (top, left, bottom, right). Consider improving this by rounding the boundary values before calling the Arrange() method of the row's container.
Completed
Last Updated: 15 Mar 2021 14:29 by ADMIN
Release LIB 2021.1.322
Created by: LindenauAtSOG
Comments: 2
Category: GridView
Type: Bug Report
3

The class Telerik.Windows.Data.QueryableExtensions has a static dictionary "providerIsEntityFrameworkCore"

That dictionary will hold a reference (forever) to a collection that is set as Source for the GridView.

Reason is that non IQueryable-types will be wrapped in a EnumerableQuery<T> that will return itself as the provider (https://referencesource.microsoft.com/#System.Core/System/Linq/SequenceQuery.cs,44), encapsulating the reference.

This must be something introduced recently.

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)
{
}