New to Telerik UI for BlazorStart a free 30-day trial

Blazor Grid CRUD Operations

The Telerik Grid for Blazor supports create, update, and delete operations (CRUD) with different modes and user experience. The component also supports built-in DataAnnotations or custom validation. This page describes:

Basics

The Grid CRUD operations rely on the following algorithm:

  1. Users execute Grid commands (Edit, Save, Delete, and more) with the mouse or keyboard.
  2. The Grid fires events (OnCreate, OnDelete, OnUpdate and more), which provide information what the user did or how the component data changed.
  3. The application applies the changes to the Grid data source in the above event handlers.
  4. The Grid rebinds to display the latest data.

Model Requirements

Adding or editing rows in the Grid sets the following requirements on the Grid model:

Edit Modes

The Grid offers several ways to add and edit rows with a different user experience:

  • In-Cell—users modify the Grid content cell by cell.
  • Inline—users modify the Grid content row by row.
  • Popup—users modify the Grid content row by row in a modal popup form.

To allow users to add or edit values in the Grid:

  1. Set the EditMode parameter to a member of the GridEditMode enum. The default EditMode parameter value is None and the built-in Add and Edit commands don't work.
  2. Define the required command buttons and events for the selected edit mode and operations.

Set up Grid popup edit mode

RAZOR
<TelerikGrid EditMode="@GridEditMode.Popup"
             OnUpdate="@OnGridUpdate">
    <GridColumns>
        <GridCommandColumn>
            <GridCommandButton Command="Edit">Edit</GridCommandButton>
        </GridCommandColumn>
    </GridColumns>
</TelerikGrid>

See the Grid add and edit operations in action in the complete examples for Grid inline, in-cell, and popup editing.

Editing multiple rows at the same time is not supported. You can render editors in all Grid data cells through column <Template>s as an alternative.

Delete Operations

Delete operations provide the same user experience in all Grid edit modes and require the same configuration:

  • Delete command button.
  • OnDelete event.
  • Optional ConfirmDelete Grid parameter. It determines if the component will show a Dialog before firing OnDelete, so that users can abort the operation.

Delete operations can work even if the Grid EditMode parameter value is None.

See the delete operations in action in the complete examples for Grid inline, in-cell, and popup editing. Also check how to customize the Delete Confirmation Dialog.

Commands

The Grid provides the following built-in commands, which enable users to add, delete, and edit rows:

  • Add—adds a new row and puts it in edit mode. Fires the OnAdd event.
  • Cancel—cancels the row or cell changes and exits edit mode. Fires the OnCancel event.
  • Delete—deletes a row. Fires the OnDelete event.
  • Edit—puts a Grid row or cell in edit mode. Fires the OnEdit event.
  • Save—confirms the row or cell changes and exits edit mode, if the user input is valid. Fires the OnUpdate event.

Users execute commands in the following ways:

Command buttons can only reside in a Grid Command Column or the Grid ToolBar. You can also trigger add and edit operations programmatically from anywhere on the web page through the Grid State.

Events

The following table describes the Grid events, which are related to adding, deleting, and editing items. Also check the sections about item instances and event arguments below.

EventRequiredDescriptionItem InstanceIf Cancelled
OnAddNoFires on Add command button click, before the Grid enters add mode. This event preceeds OnCreate or OnCancel.NewGrid remains in read mode.
OnCancelNoFires on Cancel command invocation.New or clonedGrid remains in add or edit mode.
OnCreateTo add new items.Fires on Save command invocation for new items. This event succeeds OnAdd.NewGrid remains in add mode.
OnDeleteTo delete items.Fires on Delete command button click.OriginalGrid won't rebind. Deletion depends on the app itself.
OnEditNoFires on Edit command invocation, before the Grid actually enters edit mode. This event preceeds OnUpdate or OnCancel.OriginalGrid remains in read mode.
OnModelInitDepends on the Grid model typeFires when the Grid requires a new model instance, which is immediately before OnAdd or immediately after OnEdit.
Use this event when the Grid model type is an interface, abstract class, or has no parameterless constructor.
No event argumentsNot cancellable
OnUpdateTo edit existing items.Fires on Save command invocation for existing items. This event succeeds OnEdit.ClonedGrid remains in edit mode.

The following considerations apply for the Grid CRUD events:

  • Most events provide a GridCommandEventArgs argument in the handler. OnModelInit has no event argument.
  • All events, except OnModelInit, are cancellable and the user action can be prevented. Cancelling OnDelete does not automatically prevent item deletion from the Grid data source. This depends entirely on the executed application code.
  • The OnCreate, OnDelete, and OnUpdate events are required when using add, delete, and edit operations, respectively. The app must use these events to modify the Grid data source. The Grid does not modify its data directly.

Some events always fire in the same sequence, based on the user actions. In the list below, the value input and validation occur between the second and third event:

  • OnModelInit, OnAdd, and OnCreate for add operations
  • OnEdit, OnModelInit, and OnUpdate for edit operations

Both user workflows can end with the OnCancel event instead of OnCreate or OnUpdate.

Use async Task instead of async void for event handlers that execute awaitable operations. Otherwise the Grid may show incorrect data, or the app may throw exceptions related to disposed objects or concurrency.

Item Instances

The Grid does not expose or modify its data items directly in add or edit mode. Instead, the component creates a new item instance or clones an existing one. The user is always changing the values of the separate item instance. The Grid uses Activator.CreateInstance<TItem>() and PropertyInfo.SetValue() to create and populate items for add and edit mode. This approach:

GridCommandEventArgs

All events in the Events table, except OnModelInit, provide a GridCommandEventArgs event argument. It exposes the following properties:

Property NameTypeDescription
FieldstringThe column Field name. Applicable only for in-cell edit mode.
IsCancelledboolDefines if the user action should be prevented. See the Comparison table below for details.
IsNewboolDefines if Item is a newly added row or an existing row.
ItemobjectThe data item, which the user is adding, deleting, or editing. Cast it to the Grid model type.
ValueobjectThe data item value, which the user is editing. You can cast it to the correct type, based on the Field. Applicable only for in-cell edit mode.

Column Editors

You can customize the column editors through the column EditorType parameter, or by using an editor template. The EditorType parameter accepts a member of the GridEditorType enum:

Column Field TypeValid GridEditorType Enum Members
boolCheckBox (default)
Switch
DateTimeDatePicker (default)
DateTimePicker
TimePicker
stringTextArea
TextBox (default)

Setting column editor type

RAZOR
<GridColumn Field="@nameof(Race.StartDateTime)"
            EditorType="@GridEditorType.DateTimePicker" />

Rebinding After Data Changes

During add, edit, and delete operations, the Grid expects the application to make changes to the data source (database) and then provide the latest data to the component. Reloading the Grid can happen in different ways, depending on the current Grid data binding mechanism.

Data Parameter

In the OnCreate, OnDelete, and OnUpdate event handler, the application must do one of the following:

OnRead Event

The Grid automatically fires OnRead immediately after the following events, unless they are cancelled:

  • OnCancel
  • OnCreate
  • OnDelete
  • OnUpdate

In this way, the Grid receives the latest data after each operation is complete. If you need to skip the database read request, you can cache the Grid data in the OnRead handler, modify it manually, and reuse it.

Integration with Other Features

Updated rows comply with the current filter, group, search, and sort settings, just like all other rows. As a result, an updated row may render at a different place or disappear. To prevent this temporarily, you can bind the component with OnRead and provide cached data after the edit operation.

When editing a master row in a hierarchy Grid, the respective DetailTemplate will collapse unless you override the Equals() method of the master data item class.

Learn more integration details for the inline and in-cell edit modes.

Examples

See Grid CRUD operations in action at:

See Also