In 3.7.1, using the cellsrender function, if I wanted to NOT modify the cells content, I’d return the ‘defaulthtml’ parameter, and the cell would render correctly. If I wanted to apply additional formatting to the cell (like setting the background of the cell red), I’d return something like <div style=”background-color: red; width: 100%, height: 100%>”>’ + defaultHTML + ‘</div>’. This resulted in the ‘defaulthtml’ becoming a nested <div> under the additional CSS.
In 3.8.0, something has changed. Returning ‘defaulthtml’ causes the cell to be blank. It’s as if 3.8.0 is detecting that HTML instead of an unformatted value is being returned, and discards the contents. Returning ‘value’ causes all the default cell formatting to be lost.
Included are two images, one of the CSS from 3.7.1, and one from 3.8.0.

