@progress/kendo-vue-grid
Version:
45 lines (44 loc) • 1.14 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { GridSortSettings } from '../interfaces/GridSortSettings';
/**
* The props of the GridHeaderCellProps component.
*/
/**
* @hidden
*/
export interface GridHeaderCellProps {
/**
* The key in which the cell is located.
*/
key?: any;
/**
* The column field in which the cell is located.
*/
field?: string;
/**
* The title of the column in which the cell is located.
*/
title?: string;
/**
* The `click` event handler of the cell.
*/
onClick?: any;
/**
* @hidden
*/
selectionValue?: any;
/**
* The method for rendering the header cell.
*/
sortable?: GridSortSettings;
/**
* The method for rendering the cell.
*/
render?: any;
}