GridBatchEditSettings.StartEditAction Property
Specifies the user action that invokes a data cell’s in-place editor.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
[DefaultValue(GridViewBatchStartEditAction.FocusedCellClick)]
public GridViewBatchStartEditAction StartEditAction { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Grid |
Focused |
The user action that invokes a data cell’s in-place editor. |
Available values:
Name | Description |
---|---|
Click | A single cell click. |
Dbl |
A double cell click. |
Focused |
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>