UNPKG

@progress/kendo-angular-grid

Version:

Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.

36 lines (35 loc) 1.1 kB
/**----------------------------------------------------------------------------------------- * 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` 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']) that is used to edit the cell which will be closed. */ formGroup; /** * The DOM event that caused the `cellClose` event. * May not be present if `cellClose` was caused by an API call. */ originalEvent; constructor(options) { super(); Object.assign(this, options); } }