Completed
Last Updated: 13 Mar 2024 08:17 by ADMIN
Release 6.8.0
Teddy
Created on: 23 Nov 2022 16:43
Category: DataGrid
Type: Feature Request
6
DataGrid: Provide support for nested properties with null values

Provide support for nested properties with null values. 

Currently when using the following scenario: null ref exception is throw, when manager is null:

private Person _manager;
public Person Manager
{
    get { return _manager; }
    set { UpdateValue(ref _manager, value); }
}

<telerik:DataGridTextColumn PropertyName="Manager.Name" 
                            HeaderText="Manager"/>

 

Provide support for null values when nested properties are used in datagrid columns.

0 comments