Posted 30 May 2019, 3:24 am EST
Hi guys,
I am trying to display vertical texts on headers of a Flexgrid.
I am doing this.
itemFormatter = (panel: wijmoGrid.GridPanel, rowIndex: number, columnIndex: number, cell: HTMLElement) => {
if (panel.cellType == wijmoGrid.CellType.ColumnHeader) {
cell.innerHTML = ‘’ + cell.innerHTML + ‘’;
}
}
it is not working in Chrome, then I tried
cell.innerHTML = ‘’ + cell.innerHTML + ‘’;
It worked in IE, but still not in Chrome. Could someone help on this?
Thanks
Kun