79303307

Date: 2024-12-23 14:05:18
Score: 1
Natty:
Report link

You need to create a VNode and render it inside the cell component after the cell has been rendered. I used a column formatter with the following code:

formatter: (cell, _, onRender) => {
    onRender(() => {
        render(createVNode(MyComponent, props), cell.getElement());
    });
    return "";
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Daniel Jdamirov