UNPKG

@progress/kendo-angular-grid

Version:

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

53 lines (52 loc) 1.49 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { FocusGroup } from './focus-group'; /** * The metadata for a focusable Grid cell. * Focusable Grid cells include headers, group headers and footers, and data cells. */ export interface NavigationCell { /** * @hidden */ uid: number; /** * The column index of the cell. */ colIndex: number; /** * The logical index of the row which contains this cell. The row indexing is absolute and does not change with paging. * Group headers and footers are included. Header rows are included, starting at index 0. */ rowIndex: number; /** * The column span for this cell (if set). */ colSpan?: number; /** * The row span for this cell (if set). */ rowSpan?: number; /** * The data item index for the parent row of this cell. */ dataRowIndex: number; /** * The data item for the parent row of this cell. */ dataItem: any; /** * @hidden */ parent?: NavigationCell; /** * @hidden */ focusGroup?: FocusGroup; /** * @hidden */ detailExpandCell?: boolean; }