Custom cell renderer html content is not applied to a column when format tag
is present. Once the format tag is set to null (either programatically or in the tableview) new cells content shows the custom html.
Code example to configure cell
const column = grid.columns.byName(name);
column.cellType = ‘html’;
column.format = null;