@progress/kendo-angular-grid
Version:
Kendo UI Grid for Angular - high performance data grid with paging, filtering, virtualization, CRUD, and more.
23 lines (22 loc) • 971 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 { ElementRef } from '@angular/core';
/**
* @hidden
*/
export declare class NavigationMetadata {
dataRows: number;
headerRows: number;
isVirtual: boolean;
hasPager: boolean;
hasDetailTemplate: boolean;
gridElement: ElementRef;
virtualColumns: boolean;
columns: any;
footerRow: number;
isStacked: boolean;
get maxLogicalRowIndex(): number;
constructor(dataRows: number, headerRows: number, isVirtual: boolean, hasPager: boolean, hasDetailTemplate: boolean, gridElement: ElementRef, virtualColumns: boolean, columns: any, footerRow: number, isStacked: boolean);
}