@progress/kendo-react-grid
Version:
KendoReact Grid package
31 lines (30 loc) • 794 B
TypeScript
/// <reference types="react" />
/**
* The props of the GridHeaderCellProps component.
*/
export interface GridHeaderCellProps {
/**
* 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;
/**
* The `selectionChange` event handler of the cell.
*/
selectionChange: any;
/**
* The `selectionValue` event handler of the column in which the cell is located.
*/
selectionValue: any;
/**
* The method for rendering the header cell.
*/
render?: (defaultRendering: React.ReactNode | null, props: GridHeaderCellProps) => React.ReactNode;
}