New to Kendo UI for Vue? Start a free 30-day trial
Editing Basics
Updated on Jun 29, 2026
The native Vue Grid by Kendo UI enables you to create, update, and delete data records.
Getting Started with Editing
To enable editing in the Grid:
- Set the
editFieldprop to the name of the boolean field that marks a row as active (for example,'inEdit'). - Handle the
onRowclickevent to set the clicked row as the active edit row. - Handle the
onItemchangeevent to update the data when the user edits a cell value. - Configure the
editorproperty on columns that require a specific input type ('date','numeric', or'boolean').
The following example demonstrates a basic inline editing setup. Clicking a row opens it for editing, changing a cell value updates the data immediately, and the Add new toolbar button prepends a blank row in edit mode.
Change Theme
Theme
Loading ...