RichFaces rich:panelMenu stops working when a4j:include'd

隐身守侯 提交于 2019-12-04 17:38:22

This problem went away when I recast the taglib declarations as

<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:a4j="http://richfaces.org/a4j"
    xmlns:rich="http://richfaces.org/rich">

instead of using <% %> tags (which aren't used with facelets anyway)

and installed jsf-facelets-1.1.14.jar. No facelets jar was installed at all until this point!

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!