kgautron
kgautron

Reputation: 8283

Why is there no official doc on JSF <f:ajax /> tag

I went to what I think is supposed to be the official javadoc for JSF 2.0 : http://download.oracle.com/docs/cd/E17802_01/j2ee/javaee/javaserverfaces/2.0/docs/pdldocs/jsp/index.html

And I don't see the f:ajax tag.. How come?

Upvotes: 2

Views: 491

Answers (1)

BalusC
BalusC

Reputation: 1109542

Because you're reading the JSP targeted docs, not the Facelets targeted docs. Replace the "/jsp" path near the end of URL by "/facelets" to get the proper docs.

Note that more proper ("official") URLs of the JSF tag documentations are the following:

Upvotes: 4

Related Questions