EditService
Interface
The interface which must be extended when creating custom edit service.
This interface defines the methods that a custom editing service should implement to handle create, update, and remove operations on grid items.
Set the custom edit service to the editService input of the respective editing directive
See example.
Definition
Package:@progress/kendo-angular-grid
Methods
Sets new values to an item.
Parameters:targetany
The target item.
sourceanyThe source of values.
Creates an item for a new row.
Parameters:itemany
The item to create.
Removes an existing row.
Parameters:itemany
The item to remove.
Updates an item for an existing row.
Parameters:itemany
The item to update.