請幫助我瞭解,當點擊如何A4J:命令按鈕決定豆
<h:form>
<h:panelGrid columns="3">
<h:outputText value="Age:"/>
<h:inputText value="#{userBean.age}" size="4"/>
<a4j:commandButton value="Enter Age" reRender="age"/>
</h:panelGrid>
<h:panelGrid>
<h:outputText id="age" value="Your age: #{userBean.age}"/>
</h:panelGrid>
</h:form>
的commandButton,它是如何評價一個bean調用setter方法。它是否從輸入區域內使用的bean獲得了偏差?
謝謝
如果commandbutton有任何actionlistener調用,那麼它會調用它。否則它也會做它想做的事情。 – Addicted
你有什麼疑問?比如commandbutton是如何工作的?/ – Addicted
我實際上是在問如何知道如何調用bean的setter,而沒有任何bean映射 – muneebShabbir