目前我正在学习 RichFaces 并阅读了一些现场演示,http://livedemo.exadel.com/richfaces-demo/richfaces/commandButton.jsf?c=commandButton&tab=usage
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:a4j="http://richfaces.org/a4j"
xmlns:rich="http://richfaces.org/rich">
<style>
.gridhello {
border-collapse : collapse;
}
.gridhellocolumn {
padding-left : 0;
}
.outhello {
font-weight: bold;
}
</style>
<a4j:form>
<h:panelGrid columns="3" styleClass="gridhello" columnClasses="gridhellocolumn">
<h:outputText value="Name:" />
<h:inputText value="#{userBean.name}" />
**<a4j:commandButton value="Say Hello" reRender="out" />**
</h:panelGrid>
</a4j:form>
<rich:spacer height="7"/>
<br />
<h:panelGroup id="out">
<h:outputText value="Hello " rendered="#{not empty userBean.name}" styleClass="outhello" />
<h:outputText value="#{userBean.name}" styleClass="outhello" />
<h:outputText value="!" rendered="#{not empty userBean.name}" styleClass="outhello" />
</h:panelGroup>
<br />
代码行没有“action”属性,我只是想知道它是如何工作的,在这种情况下调用 back bean 的默认方法是什么,以便更新 userBean.name?
提前致谢!