示例页面。
<tr:outputText value="#{my.name}" id="name"/>
<tr:commandButton text="Click" action="#{my.doaction}" id="test1">
<f:ajax event="click" listener="#{my.myajax}" render="name"></f:ajax>
</tr:commandButton>
</tr:form>
</ui:define>
</ui:composition>
托管bean ...范围请求
@PostConstruct
public void init(){
_name = "default";
}
public void doaction(){
System.out.println("In doaction");
}
public void myajax(AjaxBehaviorEvent ae) throws javax.faces.event.AbortProcessingException{
_name = "Ajax";
}
public void myajax() throws javax.faces.event.AbortProcessingException{
_name = "Ajax";
}
我正在使用特立尼达按钮。 jsf 2.我的听众没有被召唤。没有myajax(AjaxBehaviorEvent ae) myajax() 叫做。但是我的doaction方法正在被调用。 我错过了什么?
请帮忙。
注意:我的facesconfig在下面。指定2.2并使用trinidad 2.0和myfaces 2.0创建此问题?
<faces-config
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"
version="2.2">
<application>
<default-render-kit-id>org.apache.myfaces.trinidad.core</default-render-kit-id>
</application>
</faces-config>
答案 0 :(得分:0)
您不能将ajax中调用的操作与在h:commandButton中刷新页面的操作混合使用。
你必须选择。
你有没有试过这个?
<tr:commandButton text="Click" id="test1">
<f:ajax event="click" listener="#{my.doaction}" render="name" />
<f:ajax event="click" listener="#{my.myajax}" render="name" />
</tr:commandButton>