Primefaces commandButton在Carousel中不起作用

时间:2013-12-12 19:46:32

标签: java jsf jsf-2 primefaces

我正在使用Primefaces 4.0和jsf 2.0。

我正在尝试在Carousel内的Primefaces命令按钮中调用我的托管bean的方法,但它不起作用。看起来按钮无法调用该方法。 什么都没发生......

所以,我一直在寻找,但我找不到任何有助于我解决这个问题的东西。

吼叫我的代码:

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:may bean的范围是ViewScoped。

请!

谢谢!!!!!

1 个答案:

答案 0 :(得分:1)

这似乎与this reported issue有关,即使它被标记为固定为3.5,我用3.5和4(社区版本)测试它,似乎仍然存在。对于问题,还有another report,给定p:tab个组件而不是p:column,就像你的情况一样。