How to show cellProperties with type autocomplete HTML?

Tags: #<Tag:0x00007f8b1db13708>

In my code i have autocomplete https://jsfiddle.net/cuongngoht/8cy6s9f7/3/ .
In Array
{
type: ‘autocomplete’,
source: [‘yellow’, ‘red’, ‘orange and another color’, ‘green’, ‘blue’, ‘gray’, ‘black’, ‘white’, ‘purple’, ‘lime’, ‘olive’, ‘cyan’,’<html><h1>Test</h1></html>’],
strict: false,
trimDropdown: false
}
And i want to show consistent in text show

<html><h1>Test</h1></html>

in How to show cellProperties with type autocomplete HTML?

I am not sure I understand the question, are you trying to render HTML after you select the dropdown? If so here is an excellent tutorial:

https://handsontable.com/examples?manual-resize&manual-move&conditional-formatting&context-menu&filters&dropdown-menu&headers

Hey @billy_degraaf

you are not able to style the dropdown list of options via js. However if you pass some HTML inside the option they will work after you choose and option and attach html renderer https://jsfiddle.net/ejL0c6z2/

If you just want to style the lis you can pass new CSS settings via listbox class like here https://jsfiddle.net/67qLsc04/