Skip to main content
A newer version of this page is available. .

DataControlBase.DetectNestedPropertyChanges Property

Gets or sets whether the GridControl detects nested property changes.

Namespace: DevExpress.Xpf.Grid

Assembly: DevExpress.Xpf.Grid.v18.2.Core.dll

Declaration

public bool DetectNestedPropertyChanges { get; set; }

Property Value

Type Description
Boolean

true, to make the GridControl detect nested property changes; otherwise, false.

Remarks

To make the GridControl detect nested property changes, set the DetectNestedPropertyChanges property to true and implement the INotifyPropertyChanged interface for the object that contains the property that changes.

Also, you can set the DataControlBase.AllowLiveDataShaping property to true to recalculate sorting, grouping, filtering, summaries, scrollbar annotations and conditional formats automatically when data in a data source is modified.

Note

The DetectNestedPropertyChanges property works only with data sources that implement IList / IEnumerable.

See Also