How can i make part of a value in a h:outputText Bold? i want the Name in bold:
<h:outputText value="Normal Text: #{Controller.Object.name}" />
i tried: <h:outputText value="Normal Text: <b>#{Controller.Object.name}</b>" />
got this error: "The value of attribute "value" associated with an element type "h:outputText" must not contain the '<' character."
after some searches here and others pages, found that the attribute escape="false"
could fix this... but doesn't make difference for me,
<h:outputText escape="false" value="Normal Text: <b>#{Controller.Object.name}</b>" />
still got the same error.
has anyone had this problem?