React Handsontable - setting className for custom rendered HotColumn

Tags: #<Tag:0x00007f136d8b09e8>

Hello, searching for a solution I got to this answer.

But it’s not working as I was expecting, if I create a hot-renderer element inside HotColumn then className is not applied to the td element. Here you have an example https://codesandbox.io/s/declaring-column-settings-forked-rzfxl

Hi @jose,
to pass className to the TD element, you have to put them manually from the props.cellProperty to the props.TD: https://codesandbox.io/s/declaring-column-settings-forked-dth53?file=/src/index.js

It works, thanks!