Completed
Last Updated: 09 Oct 2024 15:36 by ADMIN
Release 2024 Q4 (November)
In Development
Last Updated: 08 Oct 2024 11:53 by ADMIN
Scheduled for 2024 Q4 (November)

Call stack:

Telerik.WinControls.GridView.dll!Telerik.WinControls.UI.GridGroupHeaderRowElement.Initialize(Telerik.WinControls.UI.GridViewRowInfo rowInfo) Line 100
	at Telerik.WinControls.UI\GridGroupHeaderRowElement.cs(100)
Telerik.WinControls.GridView.dll!Telerik.WinControls.Export.GridExportUtils.GetRowHeight(Telerik.WinControls.UI.RadGridView radGridView, Telerik.WinControls.UI.RowElementProvider rowProvider, Telerik.WinControls.UI.CellElementProvider cellProvider, Telerik.WinControls.UI.GridViewRowInfo gridViewRowInfo, bool exportVisualSettings) Line 158
	at Telerik.WinControls.Export\GridExportUtils.cs(158)
Telerik.WinControls.GridView.dll!Telerik.WinControls.Export.GridViewSpreadExport.AddRow(Telerik.WinControls.UI.GridViewRowInfo gridViewRowInfo, int rowIndex) Line 960
Unplanned
Last Updated: 04 Oct 2024 10:22 by ADMIN
In this case, we have a GridViewHyperlinkColumn in which we have a cell with an empty string or null value. Exporting the control in XLSX format leads to an exception.
Unplanned
Last Updated: 30 Sep 2024 13:53 by ADMIN
This only happens initially when you first start checking/unchecking rows. See the attached gif file.
Completed
Last Updated: 25 Sep 2024 10:53 by ADMIN
Release 2024.3.924
In this case, the cell contains the following string: körte. When copying the cell while it is in non-edit mode, and pasting the value in another cell, the pasted string is the following one: körte
Completed
Last Updated: 25 Sep 2024 10:52 by ADMIN
Release 2024.3.924
Checking the select column header cell won't select the rows that are hidden. Thus in a grouping scenario, the group checkbox to an intermediate state. This will lead to confusion that there are still un-selected items, while all visible items are selected.
Completed
Last Updated: 25 Sep 2024 10:51 by ADMIN
Release 2024.3.924
The current behavior clears the selection when doing so.
Completed
Last Updated: 25 Sep 2024 10:39 by ADMIN
Release 2024.3.924
Completed
Last Updated: 25 Sep 2024 10:38 by ADMIN
Release 2024.3.924
  1. Group by some column or create hierarchy.
  2. Select all from the parent header check box or in the header.
  3. Expand parent row
  4. As a result, the row expands, but selection disappears.
Completed
Last Updated: 25 Sep 2024 10:22 by ADMIN
Release 2024.3.924
How to reproduce: Create a DPI-aware application and run it on a Windows 10 machine on 125%, the text inside the editors is smaller compared to the text in cells which are not in edit mode.

Workaround: 
private void RadGridView1_CellEditorInitialized(object sender, GridViewCellEventArgs e)
{
    BaseInputEditor editor = e.ActiveEditor as BaseInputEditor;

    if (editor != null)
    {
        RadTextBoxItem item = editor.EditorElement.FindDescendant<RadTextBoxItem>();

        if (item != null)
        {
            item.HostedControl.Font = this.radGridView1.GridViewElement.GetScaledFont(this.radGridView1.GridViewElement.DpiScaleFactor.Height);
        }
    }
} 
Unplanned
Last Updated: 09 Aug 2024 11:52 by ADMIN
In this case, we have GridViewCalculatorColumn. The cell value is 123, for example. Trying to edit the cell value, the RadCalculatorEditor reset the cell value to 0. 
Completed
Last Updated: 09 Aug 2024 09:22 by ADMIN
Release 2024.3.806 (2024 Q3)
Created by: Jason
Comments: 6
Category: GridView
Type: Feature Request
11
Enable the ability to MERGE seperate rows (different records), like found in ITunes "Songs" mode where is shows the artwork (then artist,release undernearth) in a custom class, then the related song rows to the right.

Your competitor Dev Express has it already in place.

See youtube video here :

https://www.youtube.com/watch?v=TfPXwE7GcXs

Cheers
Completed
Last Updated: 07 Aug 2024 15:11 by ADMIN
Release 2024.3.806 (2024 Q3)
Unplanned
Last Updated: 06 Aug 2024 10:33 by ADMIN
Unplanned
Last Updated: 01 Aug 2024 10:45 by ADMIN
In this case, we have null values in some cells. When filtering the column, these cells will be ignored. 
Unplanned
Last Updated: 30 Jul 2024 13:00 by ADMIN
While the Excel-Like filtering dialog is open and the mouse is over the RadGridView rows, moving the mouse wheel will scroll both the filtering dialog and the rows.
Unplanned
Last Updated: 27 May 2024 08:14 by ADMIN
EndEdit() method is not called of IEditableObject if an exception is thrown while setting a null value to the bound property
Completed
Last Updated: 15 May 2024 07:49 by ADMIN
Release 2024.2.514 (2024 Q2)
NullReferenceException occurs in a multi-select scenario when clicking (and holding the mouse button) on an empty area in the grid and the mouse leaves the boundaries of the control.
Completed
Last Updated: 15 May 2024 07:49 by ADMIN
Release 2024.2.514 (2024 Q2)

In this scenario, the RadGridView.DataSource property is set to Microsoft.EntityFrameworkCore.ChangeTracking.ObservableCollectionListSource. When the RadGridView.Rows.Remove() method is called an IndexOutOfRange exception is thrown.

 


Unplanned
Last Updated: 09 May 2024 10:25 by ADMIN
In this case, the RadGridView is in the Self-Reference hierarchy. When the value of a cell is changed runtime, we are populating the bound (BindingList) collection with new items. All BindingList notifications will be called, however, the internal RadListSource in the RadGridView won't be updated, thus leading to a ArgumentOutOfRangeException.
1 2 3 4 5 6