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>