Skip to main content

TreeListOptionsBehavior.ImmediateUpdateRowPosition Property

Gets or sets whether the tree list automatically updates the row order and row visibility after a cell value is changed.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v23.2.dll

NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

[DefaultValue(true)]
[XtraSerializableProperty]
public virtual bool ImmediateUpdateRowPosition { get; set; }

Property Value

Type Default Description
Boolean true

true if the tree list automatically updates the row order and row visibility after a cell value is changed; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ImmediateUpdateRowPosition
TreeList
.OptionsBehavior .ImmediateUpdateRowPosition

Remarks

The data in the tree list can be sorted or filtered. When a cell value changes, the row order or row visibility may no longer fit the current sort or filter settings. The tree list automatically re-orders rows after a cell value changes or hides the row if it does not fit the current filter.

Set the ImmediateUpdateRowPosition property to false to prevent the tree list from an automatic update. To update the row order and row visibility manually, call the TreeList.RefreshDataSource method.

See Also