I'm trying to use richfaces extendedDataTable with a4j:support to change a rich:panel's 'rendered' attribute's value but it's not working.
This is part of my JSF page that contains a rich:extendedDataTable and a rich:panel:
<h:form id="tabForm">
<rich:extendedDataTable id="myTable" width="500px" height="250px"
value="#{extDataTableBean...
This is what i want to achieve. I have navigation panel on left and content panel on right.
when user click links on left navigation panel , ajax calls made and content panel got rendered. With current implementation, content got change based on the link i clicked.
however i found content still don't get change when perform following s...
I used richfaces in a JSF project. Now I'm trying the same with Seam.
But I always get the same JavaScript error:
Message: Object required
Line: 2791
Code: 0
URI: http://localhost:8080/myapp/a4j/g/3_3_1.GA/org/ajax4jsf/framework.pack.js
The s:button tag works
<s:button id="eMail0" value="sButton" action="#{Mailer.sendMail}" />
Bo...