Hi,
i have a Handsontable that some fields (checkbox field) is not rendering when page loaded, it renders when i just start to make some edition in the table.
And when the react state is changed, it comebacks to un-render again that field.
<HotTable
data={ this.state.data }
settings={this.state.handsonTable.settings}
ref={this.hotTableComponent}
>
<HotColumn title="id" width="70" >
<CheckboxCell hot-renderer />
</HotColumn>
<HotColumn title="origin" data="origin" width={standardWidth} >
<EditCell hot-renderer style={{textAlign:"right"}} number="no" editNewItems="yes"/>
</HotColumn></HotTable>
renderer.js
export function CheckboxCell(props) {
props.cellProperties.readOnly = false
props.cellProperties.type = 'checkbox'
return <div style={styleCell}>
{props.value}
</div>
}