1
我在屏幕上使用tabbedPane和dataTable的組合。我使用loadMode =「ajaxLazy」,以便只在需要時才檢索數據。下面列出了xhtml。Openfaces,ajax和IE7
Main.xhtml
<o:tabbedPane selectionChangeListener="#{aListener.selectionChanged}" loadingMode="ajaxLazy">
...
<o:subPanel caption="Pane X">
<ui:include src="tableContainingFragment.xhtml" />
</o:subPanel>
...
</o:tabbedPane>
tableContainingFragment.xhtml
<o:dataTable value="#{sourceBean.rows}" var="row">
...
</o:dataTable>
實施工作在Chrome,Firefox和IE8,但不是在IE7。執行對服務的ajax調用並檢索所需的數據,但該選項卡從不呈現。 tabbedPane組件停留在初始加載頁面的標籤上。還有其他選項卡,不需要ajax調用來獲取數據,並且在選擇時進行渲染。
我們使用的是Openface 3.0。
有人知道如何讓它在IE7中工作嗎?
不過,我發現了一些其他問題,IE7和OpenFaces 3.X,每晚構建,包括性能問題。 – fransvn