Witam,
Jak można zamieścić dwie akcje pod jednym przyciskiem? W tej chwili mam dwa przyciski które działają, jednak chciałby połączyć ich 'działania' w jednym. Może jest coś jak multiaction, a może jakieś całkiem inne podejście?
<h:head>
<title>Personal Form!</title>
<ui:include src="header.xhtml"/>
</h:head>
<h:body>
<h:form>
<h3>Form, please input data:</h3>
<hr></hr>
<br><h:inputText id="inputcity" value="#{user.city}"/><h:outputLabel id="outputcity" value="#{user.city}"/></br>
<br><h:inputText id="inputage" value="#{user.age}"/><h:outputLabel id="outputage" value="#{user.age}"/></br>
<br><hr></hr></br>
<f:ajax event="keyup" execute="inputcity" render="outputcity"/>
<f:ajax event="keyup" execute="inputage" render="outputage"/>
**<h:commandButton id="Confirmation" value="Confirmation" action="confirmation"/>
<h:commandButton id="save" value="Save" action="#{user.print()}"/> **
</h:form>
</h:body>
</html>
Pytanie pewnie prozaiczne ale dopiero startuje z JSF. Dzięki za pomoc.