Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tried to embed a datatable with single selection inside a carousel, all the contents are displayed correctly in the table. However, the ajax and the commandButton doesn't work, I mean, the method displaySth() and select() are not called at all!! If I remove the Carousel, the ajax and button works fine!! Anyone can please tell how to solve this problem? Thanks!

  <h:form id="form">

     <p:dataTable id="" var="dept" value="#{school.depts}"                    
               scrollable="true" scrollRows="5" paginator="true" 
               paginatorTemplate="{CurrentPageReport}"
               paginatorPosition="top" style="width:500px;"  
               rowKey="#{dept.name}"  
              selection="#{schoolbean.selectedDept}" selectionMode="single">  
        <p:ajax event='rowSelect' listenet="#{schoolbean.displaySth()}"/>

        <p:column >#{dept.name} </p:column>  

        <p:column style="width:40px">  
            <h:panelGrid columns="3" styleClass="actions" cellpadding="2">  
               <p:commandButton id="selectButton" action="#{schoolbean.select()}"  />
            </h:panelGrid>  
        </p:column>  

    </p:dataTable>
  </p:carousel>
  </h:form>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.