Rendering Angular components in Handsontable Cells Rendering Angular components in Handsontable Cells angular angular

Rendering Angular components in Handsontable Cells


Using a cell renderer.Use the renderer name of your choice when configuring the column:

const container = document.getElementById('container');const hot = new Handsontable(container, {  data: someData,  columns: [{    renderer: 'numeric'  }]});


may be you need to try changeDetection as below, forcing the new changes to your component.

changeDetection: ChangeDetectionStrategy.OnPush