I've created a query in SWQL Studio that has some basic inline html and the query works.
When I paste this exact same query into a Custom Table widget of type SWQL (not SQL) it shows me the CORRECT query results if I hit "preview results" BUT I cannot save the query in the datasource because it says :
Columns with problems: LOG
Usually it should give additional detail there when there is a problem but in this case, it does not. We're running NPM 2020.2.5 HF1
I have "Allow HTML tags" checked ON in the Table Layout settings for each column.
What am I doing wrong?
SWQL:
SELECT
CONCAT('<p style="font-size:smaller">',ToLocal(EventTime),'</p>') AS TimeStamp,
CONCAT('<p style="font-size:smaller">',Message,'</p>') AS Log
FROM Orion.Events
WHERE (NetObjectType='N' OR NetObjectType='I') AND EventType<>19
ORDER BY EventTime DESC