RichFaces a4j(commandButton组件示例)

< a4j:commandButton> 组件类似于JavaServer Faces(JSF)的< h:commandButton> 组件, 但是还包括Ajax支持。
它仅需要使用一个value属性。我们可以使用它来设置命令按钮的文本。
默认情况下, < a4j:commandButton> 使用click事件而不是Submit事件。
注-默认情况下, < a4j:commandButton> 组件具有execute =” @ form” 设置。要将渲染限制在其他范围内, 请重新定义execute属性。 例子 在下面的示例中, 我们正在实现< a4j:commandButton> 组件。本示例包含以下文件。
JSF文件
// commandButton.xhtml

< !DOCTYPE html> < ui:composition xmlns="http://www.w3.org/1999/xhtml"xmlns:h="http://java.sun.com/jsf/html"xmlns:f="http://java.sun.com/jsf/core"xmlns:ui="http://java.sun.com/jsf/facelets"xmlns:a4j="http://richfaces.org/a4j"xmlns:rich="http://richfaces.org/rich"> < h:form id="form"> < h:outputText value="http://www.srcmini.com/User Name" /> < h:inputText value="http://www.srcmini.com/#{user.name}" /> < a4j:commandButton value="http://www.srcmini.com/Enter Your Name" execute="@form" /> < /h:form> < br/> < a4j:outputPanel> < h:outputText value="http://www.srcmini.com/Hello #{user.name} !" rendered="#{not empty user.name}" /> < /a4j:outputPanel> < /ui:composition>

托管豆
// User.java
import javax.faces.bean.ManagedBean; import javax.faces.bean.RequestScoped; @ManagedBean@RequestScopedpublic class User {String name; public String getName() {return name; }public void setName(String name) {this.name = name; }}

【RichFaces a4j(commandButton组件示例)】输出
RichFaces a4j(commandButton组件示例)

文章图片

    推荐阅读