The Blazor Editable Grid / Table provides full support to create, read, update, and delete operations (CRUD). In addition to built-in editor components to edit a particular column value, using template support users can use custom editor components that suit their application needs. It performs editing operations with list of business objects or remote data service with the help of data manager.
The Blazor Editable Grid / Table supports various edit modes such as inline, dialog, and batch edit (cell editing). These provide an interactive UI to add and edit records. In addition, editing can be performed programmatically.
Bulk editing allows you to save the added, edited, and deleted records in a single request. This feature is used in the Data Grid by enabling the batch editing (cell editing) mode. This provides an Excel-like editing experience and saves all the changes.
The editor for a Data Grid cell can be specified by providing the edit type. The preferred editor can also be defined for specific columns.
While updating cells or rows, the Data Grid validates user inputs. This helps users to improve overall data quality by validating user input for accuracy and completion. The users can also customize validation criteria and message according to their requirement.