I have a oj-table with nested data which has a fixed height and a different number of columns in the header and detail sections. Some of the header columns therefore have a colspan.
I have created an example here: https://jsfiddle.net/gushie/wrab1t43/15/
All starts off well. However after scrolling for a short while, I get the following error in the Chrome DevTools console and it fails to load any more rows.
ojtable.js:25 Uncaught TypeError: Cannot read property 'style' of null
at e.TableDomUtils.freezeColumnWidths (ojtable.js:25)
at ojtable.js:7
freezeColumnWidths looks to be cycling through the cells of the first row. However due to the colspan's, there are less cells than columns so it is causing an error.
Is there a way I should be doing this that would avoid this problem?