Skip to main content
Tab

GridBatchEditSettings.AllowValidationOnEndEdit Property

Specifies whether to validate data when a cell/row/record switches from edit to browse mode.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool AllowValidationOnEndEdit { get; set; }

Property Value

Type Default Description
Boolean true

true to validate data when cell/row/record editing ends; otherwise, false.

Remarks

When a grid control is in batch edit mode, use the AllowValidationOnEndEdit property to specify whether to validate data when cell/row/record editing ends.

<dx:ASPxGridView ID="Grid" runat="server" ...>
    <!-- ... -->
    <SettingsEditing Mode="Batch">
        <BatchEditSettings AllowValidationOnEndEdit="false" />
    </SettingsEditing>
</dx:ASPxGridView>

For more information on a particular grid control in batch edit mode, refer to the following topics:

Online Demos

Run Demo: ASPxGridView - Batch Editing and Updating

Run Demo: ASPxCardView - Batch Editing and Updating

Run Demo: ASPxVerticalGrid - Batch Editing and Updating

Run Demo: ASPxTreeList - Batch Editing and Updating

See Also