How to make a custom editor/renderer with radioboxes in it?

Tags: #<Tag:0x00007f8b19dbaf28>

I have and an enum value to choose: Option1, Option2, Option3.
How to make a cell, a custom editor/renderer with 3 radioboxes in it and bind and selected value to the property of data object of handsontable instance.

Hi @kipic96

the rendering

https://jsfiddle.net/handsoncode/wasenumd/

but you’d need to check the events being done on those cells to update the content once someone changes the radio status. By default when user edits any cells the state will get erased.

Thank you, it works, I added the onchange events updating and it works perfectly.

Great. Thank you for confirmation.