Disable escape in a commandButton
How can I prevent jsf to escape the value of a commandButton?
<h:commandButton style="float: right;" action="#{CompanySearchBean.closeDetails}">
<h:outputText value="test" escape="false"></h:outputText>
</h:commandButton>
This is not working.

