Talbe is not rendering

Tags: #<Tag:0x00007f8b23e0b1f8>

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>

}

Hi @ezequiel.cacciatore

Could you please prepare a code demo (for example in jsFiddle) showing the issue? There’s not enough information in the code you sent to properly investigate the problem.

Hi @ezequiel.cacciatore

Is the issue still present? If so, please send us a demo that shows how to replicate the issue.

I think that we can close the issue as there are no updates.

@ezequiel.cacciatore
Please contact us at support@handsontable.com if the issue still occurs