I use Orbeon Forms and I want to set a dynamic class name on a div or span (or any non-XForms tags like xforms:output) so that group of controls can be set with that CSS class.
<div class="color-with-{if(/fetch/data1='Yes') then 'green' else 'red'}">
But this is not working. When I look at the HTML source code after the form is rendered it seems it did not processed that dynamic part.
<div class="color-with-{if(/fetch/data1='Yes') then 'green' else 'red'}"
id="xf-279">
However this dynamic assignment works pretty good with Orbeon tags.
<xforms:output value="if ((xxforms:valid(instance('account-opening-setup'),true()))
and (xxforms:valid(instance('form-variables'),true())))
then 'Complete' else 'Incomplete'"
class="validation-{if ((xxforms:valid(instance('account-opening-setup'),true()))
and (xxforms:valid(instance('form-variables'),true()))) then 'complete'
else 'incomplete'}" />
Please advise which HTML tag I can use to dynamically assign a class name so that group of controls follow that class CSS.