@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) • 924 B
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 "@progress/kendo-angular-common";
/**
* Arguments for the `undo` and `redo` events.
*/
export class UndoRedoEvent extends PreventableEvent {
/**
* The event data of the original action that triggered the state change.
*/
originalEvent;
/**
* The grid state and rendered data at the time of the action.
*/
gridState;
/**
* @hidden
*/
constructor({ originalEvent, gridState }) {
super();
this.originalEvent = originalEvent;
this.gridState = gridState;
}
}