Skip to main content
Tab

GridBatchEditSettings.StartEditAction Property

Specifies the user action that invokes a data cell’s in-place editor.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(GridViewBatchStartEditAction.FocusedCellClick)]
public GridViewBatchStartEditAction StartEditAction { get; set; }

Property Value

Type Default Description
GridViewBatchStartEditAction FocusedCellClick

The user action that invokes a data cell’s in-place editor.

Available values:

Name Description
Click

A single cell click.

DblClick

A double cell click.

FocusedCellClick

A focused cell click.

Remarks

In batch edit mode, a user focuses a cell and clicks it to start editing. To change the user action that invokes an editor, set the StartEditAction property to Click or DblClick.

<dx:ASPxGridView ID="ASPxGridView1" runat="server" ...>
    <!-- ... -->
    <SettingsEditing Mode="Batch">
        <BatchEditSettings StartEditAction="Click" />
    </SettingsEditing>
</dx:ASPxGridView>
See Also