@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
25 lines (24 loc) • 820 B
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';
/**
* Provides the arguments for the `detailCollapse` event.
*
* The event fires when a detail row collapses.
*/
export declare class DetailCollapseEvent extends PreventableEvent {
/**
* The `dataItem` for the collapsed row.
*/
dataItem: any;
/**
* The index of the collapsed row.
*/
index: number;
/**
* @hidden
*/
constructor(args: any);
}