HeaderCell template
The main purpose of this cell is to mark its content as not focusable and read-only. Usually used to mark header rows
and columns. HeaderCell also prevents scroll action (it’s helpfull on a touch screens to perform row and column selection).
HeaderCell interface is extended by Span, therefore you can span this cell.
Implementation
Open
HeaderCellimplementation on github
Interface declaration
interface HeaderCell extends Cell, Span {
type: 'header';
text: string;
}| Property name | Type | Property description |
|---|---|---|
type | header | Type of cell template |
text | string | Content of cell |