Reputation: 5233
Due to yet FusionCharts is not support for acelets, I should have to use .jsp page for my dashboard.
<h:commandLink value="next >" styleClass="paginationLink">
<f:ajax event="click" execute="taskSeaResults" render="taskSeaResults" listener="#{homeController.homePageNavigator.next}"/>
</h:commandLink>
Then when I try to use f:ajax option as above in that dashboard.jsp it was not working, I have included the taglib also (<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>). Is there any alternative way to accomplish this f:ajax functionality with .jsp pages? Thanks
Upvotes: 1
Views: 1541
Reputation: 1108642
JSP is deprecated since JSF 2.0. All tags which are new since JSF 2.0 are not available for JSP anymore. Move on to Facelets.
Upvotes: 2