hi i have the following code and i want to display items.date Value in Bold on my UI is there any attribute for making My Value Bold any help pls
thanks
hi i have the following code and i want to display items.date Value in Bold on my UI is there any attribute for making My Value Bold any help pls
thanks
How about enclosing it in a span to make it bold or adding a css style and applying it.
<span style="font-weight:bold">My Value Bold!</span>
or rather
<h:outputText value="AAAAAAA" style="font-weight:bold" />
Just do:
<h:outputText value="AAAAA" style="font-weight:bold"/>
and this code will output the following html:
<span style="font-weight:bold">AAAAA</span>