Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

a4j:support tag not found using JSF 2

just trying to integrate this commandLink

<a4j:commandLink reRender="results-view" actionListener="#{myaction}" oncomplete="return false;" value="#{msg1.advanced_search}">
                            <a4j:support event="onclick">
                                <f:setPropertyActionListener value="./page.xhtml" target="#{changeViews['new-view'].value}" />
                            </a4j:support>
                        </a4j:commandLink>

On an applicacion which is using JSF2. If I leave it, I get this error

Tag Library supports namespace: http://richfaces.org/a4j, but no tag was defined for name: support

I was trying to find something on the net, but I couldn't figure out. Some help would be great.
Thanks in advance

like image 468
Blanca Hdez Avatar asked Mar 23 '11 08:03

Blanca Hdez


1 Answers

The a4j:support has been replaced by a4j:ajax since RichFaces 4.x.

You seem to be reading RichFaces 3.x documentation or just have upgraded RichFaces 3.x to 4.x. This is a pretty major step where a lot of things are been changed. Read the migration guide (in this particular case, it's described in a4j components) and also read the new RF4 component reference.

like image 106
BalusC Avatar answered Sep 18 '22 12:09

BalusC