Not able to render custom html in cell if format tag is set

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;

Thanks for reporting - this is fixed, now custom element takes precedence over format.

1 Like

By the way, it’s possible to build row-based dynamic html forms using our markup mechanism, no JavaScript required:

1 Like