我想创建一个包含某些实体的数据表的 xhtml 页面,以便在实体之间导航,尽管我可以使用 TabMenu。但在实施之后,tabMenu menuItems 仅显示为简单链接,而不是primefaces 示例:
我的代码:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui">
<h:body>
<h:form>
<p:tabMenu activeIndex="0">
<p:menuitem value="Customers" url="customerTableView.xhtml" icon="ui-icon-document"/>
<p:menuitem value="Orders" url="orderTableView.xhtml" icon="ui-icon-document"/> Vie
</p:tabMenu>
</h:form>
</h:body>
找不到它没有正确呈现的原因,我也尝试了不同的浏览器。