wpf-devexpress-dot-xpf-dot-grid-dot-basecolumn-f97aa812.md
Gets or sets whether to post a cell value to a data source immediately after a user changes this value in a specific column. This is a dependency property.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public bool? EnableImmediatePosting { get; set; }
Public Property EnableImmediatePosting As Boolean?
| Type | Default | Description |
|---|---|---|
| Nullable<Boolean> | Null |
true to post a cell value to a data source immediately after a user changes this value in a specific column; otherwise, false.
|
If you enable the DataViewBase.EnableImmediatePosting property, the cell value is posted to a data source immediately after a user changes this value. Otherwise, the value is posted after a user moves focus from the edited cell.
View Example: Immediately Post New Cell Values
Note
The immediate posting functionality is not supported in the following scenarios:
To enable immediate posting for an individual column, set the BaseColumn.EnableImmediatePosting property to true for this column. If you set the BaseColumn.EnableImmediatePosting property to null, the column applies the DataViewBase.EnableImmediatePosting property’s value.
You can also handle the GridViewBase.CellValueChanging event and call the PostEditor method to post an editor value manually.
Refer to the following help topic for more information: Immediate Posting.
See Also