I have this SWQL query, to display a traffic lights status icon, node caption and status but the node caption is displayed as plain text, not a clickable URL link to the node details. I cannot get the caption as a URL to work, any ideas?
SELECT
n.Caption AS [Node Name]
, n.DetailsURL AS [_LinkFor_Node Name]
, CONCAT('<img src="/Orion/images/StatusIcons/Small-', n.StatusLED,'"></>') AS Icons
, n.StatusDescription
FROM Orion.Nodes n
JOIN
Orion.ContainerMemberSnapshots cms ON n.NodeID = cms.EntityID
WHERE
cms.ContainerID = 39
ORDER BY n.Caption
Thanks for any help.