How can I convert a String in h:outputText? Here is the code of h:outputText:
<h:outputText value="#{item.label} : " />
I tried using this,
<s:convertStringUtils format="capitalize" trim="true"/>
But it gives me error :
“no tag was defined for name: convertStringUtils”
There are several ways.
Use CSS
text-transform: capitalizeproperty.with
Create a custom
Converter.with
Use OmniFaces‘
of:capitalize()function.The
<s:convertStringUtils>which you’re trying is not from Seam. It’s from MyFaces Sandbox.