Hi Arjen, hi Can,
I think you are referring to the choices inside a ChoiceTable-like widget. My favorite approach consists in splitting value and display options.
You can specify them as an array:
choices: [
[
// Value.
'increase',
// Display.
`<div style="float: left"><img style="margin: 20px; max-height: 60px" src="/arrows/up2.png"></div><div><strong>Increase inequalities</strong>`
],
...
choices: [
{
// Value.
value: 'increase',
// Display.
display: `<div style="float: left"><img style="margin: 20px; max-height: 60px" src="/arrows/up2.png"></div><div><strong>Increase inequalities</strong>`
},
...
]
Cheers,
Stefano