2012-07-06 49 views
0

我正在使用Primefaces 3.3.1。我的用例非常簡單,登錄後用戶將登陸他的主頁。PrimeFaces佈局需要手動刷新FireFox和IE

主頁顯示一個p:layout與西部和中心部分。

在Firefox 11和IE 9中,登錄後不顯示按鈕,但如果我刷新或重新加載頁面,它會正確顯示。但在Chrome登錄後佈局正確顯示,沒有需要手動刷新。

我不確定爲什麼這不適用於Firefox和IE。

home.xhtml 

<!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:p="http://primefaces.org/ui"> 
<h:head> 
</h:head> 
<h:body> 
<p:layout style="min-width:400px; min-height:200px;"> 
    <p:layoutUnit position="west" size="200" header="Left" resizable="true" closable="false" collapsible="true"> 
    </p:layoutUnit> 
    <p:layoutUnit position="center"> 
    </p:layoutUnit> 
</p:layout> 
</h:body> 
</html> 

有沒有人遇到過類似的問題?

在Firebug中我看不到任何錯誤。

更新:

看來這是發生,因爲.ui-layout-unitvisibility = hidden。但爲什麼?

enter image description here

回答