Have some doubt with JSF 2, I would like to use the ajax functionality of JSF 2 only, not going to use any of its implementations.
Have taken the JSF libraries from http://download.java.net/maven/2/com/sun/faces/jsf-api/2.1.1-b03/
But still none of these are supporting the ajax tag that I am using to implement the functionality.
I get the error org.apache.jasper.JasperException: /JSP/BillingPayment.jsp(15,3) No tag "ajax" defined in tag library imported with prefix "f" for the following request.
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
<html>
<body>
<h:form>
<h:panelGrid>
<h:inputText value="#{dataTableBean.sponsorID}">
<f:ajax event="keyup" />
</h:inputText>
<h:outputText id="text" value="#{dataTableBean.sponsorID}" />
</h:panelGrid>
</h:form>
</body>
</html>
For this I presume, I am not having the proper library, please can you give me the correct JSF2 library that supports ajax.