How can I bind the value of the CSS class attribute of a XML fragment to a model property within another XML view?
The following snipped works fine
<core:Fragment fragmentName="com.foo.bar.Fragment" type="XML" class="important"/>
and should be changed to something like
<core:Fragment fragmentName="com.foo.bar.Fragment" type="XML" class="{itemStatus}"/>
where {itemStatus}
should be bound to model property.
Any help appreciated!