Posted 19 July 2018, 3:22 pm EST
We’re having issues displaying a lot of data in flex grids that use custom cell templates (
[cellType]="'Cell'"). Doing some profiling in Chrome, it looks like the slowest piece is a call we’re doing to $row.grid.getCellData($row.index, $col.index, true) in order to get the formatted value for the current cell, which we then style.
Is there a more efficient way to get the data for the current cell? If possible, getting it both with and without formatting would be preferable. (I know that the
item variable is available, but the columns in our grid are dynamic, so there’s not a great way for us to get the formatted value at runtime)
Thanks.
