我正在使用PrimeFaces,並且我想知道它可以在同一頁面內多次渲染面板。例如,我有一個面板,如下所示:在多個場合呈現相同的面板
<p:panel id="studentInfo">
<p:commandButton id="viewFullProfile" ....
<h:outputText value="Search" />
<p:inputText id="search" ....
</p:panel>
我希望此面板在p:tabView控件的每個選項卡中。
<p:tabView id="studentProfile">
<p:tab id="tabA">
..render "studentInfo" here...
</p:tab>
<p:tab id="tabB">
..render "studentInfo" here...
</p:tab>
<p:tab id="tabC">
..render "studentInfo" here...
</p:tab>
</p:tabView>
其實要在所有選項卡中的相同信息或所有選項卡刷新'studentInfo'? –
相同的內容,它像一個標題顯示基本信息將保持不變 –