我正在使用Primefaces 4.0和jsf 2.0。Primefaces commandButton在傳送帶內不起作用
我想調用託管bean的方法,在Carousel裏面的Primefaces命令按鈕中,但它不起作用。它看起來像按鈕不能調用該方法。 什麼都沒有發生......
所以,我找了,但我找不到任何幫助我解決這個問題。
波紋管我的代碼:
Page.xhtml
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:p="http://primefaces.org/ui">
<h:head>
</h:head>
<h:body>
<h:form id="form">
<p:carousel id="tabsCarousel" numVisible="1" itemStyle="height:500px;width:800px;" effect="easeInStrong">
<p:tab title="Godfather Part I">
<h:panelGrid columns="2" cellpadding="10">
<p:graphicImage value="/images/godfather/godfather1.jpg" />
<h:outputText value="Some text" />
<p:commandButton value="ok" action="#{bean.test}" />
</h:panelGrid>
</p:tab>
</p:carousel>
</h:form>
</h:body>
</html>
和管理的bean的方法
public void test(){
System.out.print("Here!");
}
OBS:5月豆的範圍是ViewScoped。
請!
謝謝!!!!!
你可以嘗試在按鈕中加入'process =「@ this」'嗎? –
是的,我把這個命令按鈕,但沒有工作..謝謝! – AmorimRob