Completed
Last Updated: 04 Nov 2019 12:44 by ADMIN
Release LIB 2019.3.1104
If the DataMemberBinding of a GridViewMultiColumnComboBoxColumn points to a nested property, the value of that property is displayed in view mode and the DisplayMemberPath is not respected.
Unplanned
Last Updated: 03 Jun 2020 09:50 by LindenauAtSOG
Implement a way to group columns cells vertically.
Completed
Last Updated: 08 Aug 2019 08:21 by ADMIN
Release LIB 2019.2.812 (08/12/2019)
When the new value is selected from the GridViewMultiColumnComboBoxColumn, the event arguments in the CellEditEnded event does not contain the new value. 
Completed
Last Updated: 03 Dec 2019 11:49 by ADMIN
Created by: Dinko
Comments: 0
Category: GridView
Type: Bug Report
1
Fix Section 508 Compliance accessibility errors. 
Unplanned
Last Updated: 28 Jun 2019 08:25 by ADMIN

Our requirement is to navigate through RadGridView table header using keyboard tab navigation.

The header may or may not include checkbox/filter button.

However on mouse focus on table headers , it get highlighted. This feature is currently not possible with tab navigation.

Completed
Last Updated: 13 Jun 2019 14:06 by ADMIN
Release R2 2019 SP1
This is reproduced when the RadGridView is bound to a ListCollectionView and it is grouped. In such a case, when an item is edited, it is brought to the bottom of the group.
Unplanned
Last Updated: 03 Jun 2019 12:39 by ADMIN
Introduce property to set the text of the GridViewNewRow element responsible for adding new rows to the control.
Completed
Last Updated: 14 Jun 2019 13:46 by ADMIN
Release R2 2019 SP
Completed
Last Updated: 31 May 2019 14:43 by ADMIN
Release LIB 2019.2.603 (6/3/2019)
In multiple selection mode, the GridViewMutiColumnComboBox column does not respect its DisplayMemberPath property.
Unplanned
Last Updated: 20 May 2019 13:07 by ADMIN
When two columns in two separate column groups have the same name and they belong two separate column groups, the column group names of the parent column groups can be appended to the display content of the GridViewGroupPanelCells.

For example, the duplicate Code columns in the attached image should have content "PG Code" and "VENUE Code" respectively.
Completed
Last Updated: 21 May 2019 11:08 by ADMIN
Release LIB 2019.2.527 (05/27/2019)

The following exception is observed in certain cases:

at Telerik.Windows.Controls.GridView.GridViewVirtualizingPanel.FlatLayoutStrategy.RealizeMergedCells(Double frozenOffset, IEnumerable`1 mergedCells)

at Telerik.Windows.Controls.GridView.GridViewVirtualizingPanel.FlatLayoutStrategy.CalculateMergedCells(Boolean shouldInvalidateMeasure)

at Telerik.Windows.Controls.GridView.GridViewVirtualizingPanel.CalculateMergedCells(Boolean shouldInvalidateMeasure)

at Telerik.Windows.Controls.GridView.GridViewCellsPanel.ArrangeOverride(Size finalSize)

Completed
Last Updated: 03 Jun 2019 06:27 by ADMIN
Release LIB 2019.2.603 (06/03/2019)
Columns are not automatically generated when binding to an empty table passed by RadEntityFrameworkDataSource
Completed
Last Updated: 17 May 2019 15:17 by ADMIN
Release LIB 2019.2.520 (05/20/2019)
Unplanned
Last Updated: 07 May 2019 15:52 by Anthony

The built-in export capabilities for the RadGridView are clunky and not well though out. Additionally, it doesn't fully support exporting hierarchical child data. (You can do it, but you have to go through a good bit of song and dance for something that I've seen other tool sets do automatically.)

I'd like to see the option fully baked that doesn't require code-behind (allowing an MVVM approach). And asynchronous methods that uses standard async-await conventions.

Unplanned
Last Updated: 17 Sep 2019 09:28 by ADMIN

If you have the following model, the columns that show the Test and Date properties (in the derived class) cannot be sorted or filtered.

 

public class RowModel
{
    public int Id { get; set; }
    public Bar FredBar { get; set; }
}
 
public class Fred : Bar
{
    public DateTime Date { get; set; }
    public string Test { get; set; }
}
 
public abstract class Bar
{
    public string Title { get; set; }
    public double Value { get; set; }       
}

<telerik:RadGridView.Columns>
    <telerik:GridViewDataColumn DataMemberBinding="{Binding Id}" />               
    <telerik:GridViewDataColumn DataMemberBinding="{Binding FredBar.Title}" />
    <telerik:GridViewDataColumn DataMemberBinding="{Binding FredBar.Value}" />
    <telerik:GridViewDataColumn DataMemberBinding="{Binding FredBar.Date}" />
    <telerik:GridViewDataColumn DataMemberBinding="{Binding FredBar.Test}" />
</telerik:RadGridView.Columns>

To work this around, set the IsCustomSorting property of the corresponding columns and implement a custom sorting in the Sorting event of RadGridView.

Unplanned
Last Updated: 16 Apr 2019 12:56 by ADMIN
When the RadGridView is bound to a collection of DynamicObject and runtime we add a new property to the objects, this new property will not be respected. The columns will not be refresh.
Completed
Last Updated: 25 Sep 2019 15:34 by ADMIN
Release LIB 2019.3.923
Created by: Martin Ivanov
Comments: 0
Category: GridView
Type: Bug Report
1

This happens only if there are many columns outside of the viewport (a scrollviewer is shown), with their TabStopMode property set to Skip.

In this case, the navigation needs some time in order to get to the next row and select the first available cell.

A possible workaround for this would be to implement a custom Keyboard Command Provider, and to replace the MoveNext command with a custom one, that moves the current cell, by setting the CurrentCellInfo property of RadGridView.

Completed
Last Updated: 03 May 2019 08:03 by ADMIN
Release R2 2019
Nested property definitions are visible in situations when they don't match the filtering criteria.
Completed
Last Updated: 14 Oct 2019 11:11 by ADMIN
Release LIB 2019.3.1014
After a cell is edited, a tooltip set through a style trigger is not shown.
Unplanned
Last Updated: 30 Apr 2019 15:17 by ADMIN

Add a property to the RadGridView that provides a distinct template for adding a new row.

Sometimes you have classes with no default constructor. Those classes may have properties that are read-only after construction. This cannot be handled in the RadGridView, because you only have the choice of a CellEditTemplate. (I'm envisioning something akin to the RowDetailsTemplate.)

Example: I have a class that defines a invoice match for payment application. Once the invoice is set it cannot be changed. The user can still edit the match, but they're only allowed to edit the amount to be applied.