Is there a way to provide hints to style labels? I would especially like to be able to style the labels as bold in the summary section under certain conditions. I have a section that looks like this:
<root-node>
<node>
<label>Operations</label>
<node-factory>
<property>OperationConfigs</property>
<case>
<label>${ignored != true ? "*" : ""}${OperationName}</label>
<section>
<label>Operation</label>
<content>
<include>OperationConfigForm</include>
</content>
</section>
</case>
</node-factory>
</node>
I would prefer to be able to do something like:
<root-node>
<node>
<label>Operations</label>
<node-factory>
<property>OperationConfigs</property>
<case>
<label>${ignored != true ? "<b>" : ""}${OperationName}${ignored != true ? "</b>" : ""}</label>
<section>
<label>Operation</label>
<content>
<include>OperationConfigForm</include>
</content>
</section>
</case>
</node-factory>
</node>
[Updated on: Wed, 13 April 2016 03:13]
Report message to a moderator