每个人!我正在编写一个由 tabview 和面板组成的页面。A中有一些面板,如xhtmls。
Tabview.xhtml:
<p:tabView>
<p:tab title="1">
<ui:include src="/Apanel.xhtml"/>
</p:tab>
<p:tab title="2">
<ui:include src="/Bpanel.xhtml"/>
</p:tab>
<p:tab title="3">
<ui:include src="/Cpanel.xhtml"/>
</p:tab>
<p:tab title="4">
<ui:include src="/Dpanel.xhtml"/>
</p:tab>
<p:tab title="5">
<ui:include src="/Epanel.xhtml"/>
</p:tab>
</p:tabView>
Apanel.xhtml:
<p:panel>
<ui:include src="/A1.xhtml"/>
</p:panel>
<p:panel>
<ui:include src="/A2.xhtml"/>
</p:panel>
所以这个页面有很多html和js代码。页面的性能很糟糕,即使单击复选框的响应也很慢!但布局方便系统用户。有什么办法可以实现用户在A1页面上工作,其他页面不加载,或者其他标签页不加载的效果。提前致谢!