Posted 2 August 2021, 9:41 pm EST
we are not using the default ‘getErrors’ grid validations provided by wijmo due to the size of the grid (with 1000+columns), for performance reason.
we what I did is something like:
itemFormatter(p: wjcGrid.GridPanel, rowIdx: any, columnIdx: any, cell: any) {
if (p.cellType === wjcGrid.CellType.Cell) {
if (some condition) {
cell.classList.add(‘wj-state-invalid’);
}
}
}
now I can see the red board, however I am not sure how to show the error message while use mouse hovers the cell, can you help on this?
Thanks,
Weid