How to use content with contents in ScriptSteps?
I have a Label (cms content) which holds other labels. The content of my label looks like that:
<%=ivy.cms.co("/Labels/Labels/username")%> or <%=ivy.cms.co("/Labels/Labels/password")%> is incorrect.
It works fine in JSF UI's with this code:
"#{ivy.cms.co('/Labels/Messages/loginFailedMsg')}"
But if I fill a process variable over a ScriptStep like this...
out.message = ivy.cms.co("/Labels/Messages/loginFailedMsg");
... the integrated contents are not rendered.
Is there a way to get the fully rendered label in a ScriptStep?