@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
27 lines (26 loc) • 1.01 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* The interface of the `editService` that can be set to the
* [editing directives](slug:editing_directives_grid#toc-custom-editing-service) of the Grid.
*/
export interface EditService {
/**
* The method that is called to create the items for new rows.
*/
create(item: any): void;
/**
* The method that is called to update the items for existing rows.
*/
update(item: any): void;
/**
* The method that is called to remove existing rows.
*/
remove(item: any): void;
/**
* The method that is called to set new values to an item.
*/
assignValues(target: any, source: any): void;
}