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

IModelCommonMemberViewItem.ImmediatePostData Property

Specifies whether the property editor’s control value should be passed to the property of a bound object as soon as possible when the value is changed by user. For instance, it allows you to enforce updating other displayed values that are calculated based on the current property.

Namespace: DevExpress.ExpressApp.Model

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

bool ImmediatePostData { get; set; }

Property Value

Type Description
Boolean

true if the property editor’s control value should be passed as soon as possible; otherwise, false.

Remarks

This property derives its default value from the ImmediatePostData attribute and can be accessed from the Application Model‘s BOModel | <Class> | OwnMembers | <Member> node. The property sets the default value for Views | <DetailView> | Items | <PropertyEditor> | ImmediatePostData and Views | <ListView> | Columns | <Column> | ImmediatePostData.

Refer to the ImmediatePostDataAttribute topic for details.

See Also