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

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.v19.2.dll

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:

Library Object Type Path to ImmediateUpdateRowPosition
WinForms Controls GanttControl
.OptionsBehavior.ImmediateUpdateRowPosition
ResourcesTree
.OptionsBehavior.ImmediateUpdateRowPosition
TreeList
.OptionsBehavior.ImmediateUpdateRowPosition
Reporting XRDesignFieldList
.OptionsBehavior.ImmediateUpdateRowPosition
XRDesignReportExplorer
.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