.NET MAUI DataGrid Nested Properties Support
The Telerik UI for .NET MAUI DataGrid provides support for nested properties - this allows binding of complex objects to the grid columns.
In addition, the DataGrid control provides the following property:
-
ListenForNestedPropertyChange
(bool
): Allows the DataGrid to listen for changes in the nested properties' values. The default value isfalse
.
ListenForNestedPropertyChange
isfalse
due to optimization purposes. You can enable it in case you'd need to update the nested properties' values.
Example
Here is an example of how you can use the nested properties feature in DataGrid:
1. Create the needed business objects, for example type Person
that will have property of type Address
:
2. Create the Address model:
3. In the sample, both classes inherit from the NotifyPropertyChangedBase
class, which implements the INotifyPropertyChanged
interface. You would need to add the following namespace to use it:
4. Create a ViewModel with a collection of Person
objects:
5. Use the following snippet to declare a RadDataGrid
in XAML:
6. The telerik
namespace is the following:
Here is how the DataGrid looks: