Hi, I'm trying to use the myfaces-extensions inside an existing jsf-ri-Application: The first thing I'm trying to do is replace a <h:commandLink> from <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> with a <x:commandLink> from <%@ taglib uri="http://myfaces.apache.org/extensions" prefix="x"%> (I want to add a confirmation-Dialog and suns command-Link lacks the onclick-handler...).
The link is rendered properly, but it point to a nonexisting javascript-function which results in a clear_listquizpanel_3Amysubview_3AlistQuizForm is not defined Obviously, the javascript belonging to this links gets rendered by another component: But which?! There is absolutely no javascript rendered into the page. Do I have to use the x:commandLink inside an x:dataTable?! Or anything else that I have to configure to get the javascript rendered - I already have the extensionsFilter mapped in the web.xml to all /faces/*-urls?! Thx for any help! Cheers stf

