Table of Contents

Enum BOBDataGridEditMode

Namespace
BlazOrbit.Components
Assembly
BlazOrbit.dll

Inline-edit strategy for BOBDataGrid<TItem>. Drives when changes flow back to the row item and which UI affordances appear in the toolbar.

public enum BOBDataGridEditMode

Fields

Batch = 2

Batch editing: every change is staged in memory until the user clicks Save (apply to all rows) or Cancel (discard). Useful for forms-over-data scenarios where the user wants to review multiple edits before committing.

Cell = 1

Cell-level editing: double-click an editable cell to activate an input. The value is written back to the row item on blur or Enter; Escape cancels. Each cell is its own edit transaction — the grid raises OnRowSave after every successful save so the consumer can persist the change.

None = 0

No inline editing. Cells render the read-only template (default).