Reputation: 77
I've been migrating to RichFaces 4.5.2 and while parsing the pages into xhtml format I ran into the following error:
Tag Library supports namespace: http://richfaces.org/a4j, but no tag was defined for name: htmlCommandLink
My quesion is what is the re-placer of this component in RichFaces 4?
Upvotes: 2
Views: 557
Reputation: 5021
It seems that the RichFaces 4 removed the a4j:htmlCommandLink, as it's not included in the component reference.
In my opinion, you can just use the <a4j:commandLink>
:
The
<a4j:commandLink>
component is similar to the JavaServer Faces (JSF)<h:commandLink>
component, except that it includes plugged-in Ajax behavior.
Upvotes: 2