Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はjsfタブ付きページを持っています。タブ内にリンクをロードして、html のページ フレームに似た機能を実装する方法を教えてください。jsf と richfaces の両方のオプションを知りたいです。
タグを使用して、タブ内に別のページをロードできます<ui:include。
<ui:include
xmlns:ui="http://java.sun.com/jsf/facelets
<rich:tabPanel> <rich:tab> <ui:include src="/result_page.xhtml" /> </rich:tab> </rich:tabPanel>
<rich:tabPanel>
<rich:tab>
<ui:include src="/result_page.xhtml" />
</rich:tab>
</rich:tabPanel>