Posted 5 March 2019, 3:59 am EST - Updated 3 October 2022, 8:10 pm EST
Good Day!
I have a FlexGrid that has styles(border, text color) on specific columns.
I used the itemFormatter for the styles of each column.
Initially the styles are displayed correctly on the corresponding columns.
However, when I scroll to the right-most part of the table, the styles were set to other columns. Below are the attached images for reference.
initial display
after scroll
itemFormatter code snippet
if (panel.cellType == wijmo.grid.CellType.Cell && (c >= 18 && c <= 22)) { var s = cell.style; s.borderRight = "2px solid blue"; }


