How to evaluate cms with parameter on xhtml
Hi all
I'm using jsf in ivy and normally i use directly API from ivy to get cms in xhtml file, ex:
<p:outputLabel value="#{ivy.cms.co('/ch/axonivy/Label/EntityStep/Contact/email')}"/>
now in my cms, it has placeholder like **Input email ex {0}** {0} will be replaced by param and i can do it easily on ivy script/java (using API from ivy)
but i can't use that api on xhtml page
<p:outputLabel value="#{ivy.cms.co('/ch/axonivy/Label/EntityStep/Contact/email', 'someone@google.com')}"/>
Does anyone know?