@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
35 lines (34 loc) • 1.23 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { PreventableEvent } from '../common/preventable-event';
import { EditEvent } from "./edit-event-args.interface";
import type { GridComponent } from "../grid.component";
/**
* Arguments for the `cellClose` event.
*/
export declare class CellCloseEvent extends PreventableEvent implements EditEvent {
isNew: boolean;
dataItem: any;
rowIndex: number;
sender: GridComponent;
/**
* @hidden
*/
action: string;
/**
* The Grid column that will be closed.
*/
column: any;
/**
* The [FormGroup](link:site.data.urls.angular['formgroupapi']) that is used to edit the cell which will be closed.
*/
formGroup: any;
/**
* The DOM event that caused the `cellClose` event.
* May not be present if `cellClose` was caused by an API call.
*/
originalEvent: any;
constructor(options: any);
}