New to Kendo UI for Angular? Start a free 30-day trial
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 exampe.
|
---|
Sets new values to an item.
|
Parameters | | |
---|
target
|
any
|
The target item.
|
source
|
any
|
The source of values.
|
|
|
---|
Creates an item for a new row.
|
Parameters | | |
---|
item
|
any
|
The item to create.
|
|
|
---|
Removes an existing row.
|
Parameters | | |
---|
item
|
any
|
The item to remove.
|
|
|
---|
Updates an item for an existing row.
|
Parameters | | |
---|
item
|
any
|
The item to update.
|
|