2014-04-09 69 views
0

使用PrimeFaces 4.0,我在我的頁面中包含一個佈局,但它不顯示。PrimeFaces佈局不會出現

<p:layout position="center" id="content" size="20"> 
       center 
    </p:layoutUnit></p:layout> 

但是,當我刪除佈局標記,它的工作原理!

<p:layoutUnit position="center" id="content" size="20"> 
       center 
      </p:layoutUnit> 

有什麼想法嗎?

+0

你有XHTML標籤上的[展示]如圖所示(http://www.primefaces.org/showcase/ui/layoutFull.jsf;jsessionid=1q8thte1v38st95e42wspvuij)?有些東西可能會被忽略。 – Tiny

+0

\t我添加bootstrap文件也許這就是原因! – farouk

回答

1

你的第一個例子被混淆了。試試這個:

<p:layout> 
    <p:layoutUnit position="center" id="content" size="20"> 
     center 
    </p:layoutUnit> 
</p:layout> 
+0

我做到了,但它不顯示在屏幕上,我用自舉佈局添加它! – farouk

+0

這是整個代碼 – farouk