UNPKG

@progress/kendo-angular-gantt

Version:
45 lines (44 loc) 1.56 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import type { GanttComponent } from '../../gantt.component'; import { PreventableEvent } from '@progress/kendo-angular-common'; import { TaskEditItem } from './task-edit-event.interface'; /** * Called every time a user leaves an edited cell. */ export declare class CellCloseEvent extends PreventableEvent { /** * The data item. */ dataItem: any; /** * Indicates if the data item is new or existing. */ isNew: boolean; /** * The Gantt 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; /** * The `GanttComponent` instance. */ sender: GanttComponent; /** * The `TaskEditItem` associated with the edited task. * The parent item is accessible through the `parent` property, * and allows traversing all ancestors that need to be updated. */ item: TaskEditItem; constructor(options: any); }