我在JBoss 7.1.1上使用Liferay 6.2。我创建了一个primefaces portlet,只想显示一个TabView。这是最简单的方案,甚至不起作用:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui"
>
<h:body>
<h3>Tab Test</h3>
<p:tabView scrollable="true">
<p:tab title="Tab 1">Tab 1 Content</p:tab>
<p:tab title="Tab 2">Tab 2 Content</p:tab>
<p:tab title="Tab 3">Tab 3 Content</p:tab>
<p:tab title="Tab 4">Tab 4 Content</p:tab>
</p:tabView>
</h:body>
</html>
在此图片中,您可以看到它的外观,没有显示标签,只有丑陋的链接:
这里出了什么问题?我查看了WEB-INF / lib文件夹,有一个primefaces.jar文件,也许我必须以某种方式添加依赖项?
如果有帮助,<p:button>
会正确显示为按钮。
答案 0 :(得分:2)
你可能只需要
<h:head>
</h:head>
以上<h:body>
。 Primefaces使用它来包含它的css和js。