aspnet-devexpress-dot-web-dot-griddatacolumnsettings-8285117b.md
Specifies whether an editor is displayed for a read-only cell in batch edit mode.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(true)]
public bool ShowEditorInBatchEditMode { get; set; }
<DefaultValue(True)>
Public Property ShowEditorInBatchEditMode As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true, to display editors for read-only cells; otherwise, false.
|
Find control-specific information (for ASPxGridView, ASPxCardView or ASPxVerticalGrid) in the sections below.
When a grid column’s GridViewDataColumn.ReadOnly property is set to true, the column editor is displayed in the batch edit mode, but it does not allow data editing. Set the ShowEditorInBatchEditMode property to false to not display editors for read-only columns in batch edit mode.
When a grid column’s CardViewColumn.ReadOnly property is set to true, the column editor is displayed in the batch edit mode, but it does not allow data editing. Set the ShowEditorInBatchEditMode property to false to not display editors for read-only columns in batch edit mode.
When a grid row’s VerticalGridDataRow.ReadOnly property is set to true, the row editor is displayed in the batch edit mode, but it does not allow data editing. Set the ShowEditorInBatchEditMode property to false to not display editors for read-only rows in batch edit mode.
View Example: GridView for Web Forms - How to calculate values dynamically in batch edit mode
View Example: Grid View for ASP.NET MVC - How to calculate values dynamically in batch edit mode
See Also