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 = 2Batch 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 = 1Cell-level editing: double-click an editable cell to activate an input. The value is written back to the row item on blur or
Enter;Escapecancels. Each cell is its own edit transaction — the grid raisesOnRowSaveafter every successful save so the consumer can persist the change.None = 0No inline editing. Cells render the read-only template (default).