@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
39 lines (38 loc) • 1.15 kB
JavaScript
/**-----------------------------------------------------------------------------------------
* 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';
/**
* Arguments for the [`cellClose`](slug:api_grid_gridcomponent#toc-cellclose) event.
*/
export class CellCloseEvent extends PreventableEvent {
isNew;
dataItem;
rowIndex;
sender;
/**
* @hidden
*/
action = 'cellClose';
/**
* The Grid column that will be closed.
*/
column;
/**
* The [FormGroup](link:site.data.urls.angular['formgroupapi']) used to edit the cell.
*/
formGroup;
/**
* The DOM event that triggered the `cellClose` event.
* May be undefined if the event was triggered programmatically.
*/
originalEvent;
/**
* @hidden
*/
constructor(options) {
super();
Object.assign(this, options);
}
}