We use in one of our applications the option to generate HTML code (for example extra buttons performing some actions) in list item lines. For this purpose, data row field type was working well. For example such code:
SELECT '<span style="margin:2px;"><button onclick="startAccessRequest( ''{SI:3201}'' );" style="font-weight:bold; color:green; font-size:12px; text-align:center;">➕</button></span><span style="margin:2px;"><button onclick="startAccessRemoval( ''{SI:3201}'' );" style="font-weight:bold; color:red; font-size:12px; text-align:center;">➖</button></span>' AS XX
Generated two nice buttons with + and - that performed some actions.
With the current version 2023.1.3.202 WEBCON adds extra " signs, so the entire code is quoted and displayed as text and not intepreted as HTML
I would appreciate any idea how to solve the issue