Ich möchte solche Schaltfläche in JSF erstellen.Element zu commandButton Wert hinzufügen
<button class="btn btn-primary">
<i class="fa fa-check"></i>
Save
</button>
Aber h:commandButton
nur erlauben, den Wert der Schaltfläche in Attribute setzen „Wert“ bezeichnet. Also versuchte ich so meine Schaltfläche zu erstellen:
<h:commandButton class="btn btn-primary" value="<i class='fa fa-check'></i>Save" action="#{bean.save}" />
Und bekam den Fehler:
Error The value of attribute "value" associated with an element type "h:commandButton" must not contain the '<' character.
Wie kann ich einbetten HTML in h: command?
Mögliche Duplikat [JSF HTML-Tag innerhalb Wert] (http://stackoverflow.com/questions/19146515/jsf- html-tag-inside-value) – Kukeltje