Replies: 1 comment
-
I was able to do it by encapsulating the formatters in another one: column.originalFormatter ??= this.formatters[column.formatter];
column.formatter = (cell, row, column) => {
if (specificRow !== null && row.id === specificRow) {
return html(cell?.toString());
}
return column.originalFormatter(cell, row, column);
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Question says it all. As I see it, it's not possible to set a "cell-formatter"?
Beta Was this translation helpful? Give feedback.
All reactions