我试图通过JSP include包含ADF上下文菜单,但菜单拒绝显示。这是尝试包含菜单的片段:
<af:table value="#{mockupPersonController.people}"
var="person" id="personDataTable"
rowSelection="single" inlineStyle="width: 100%; height: 95%">
<f:facet name="contextMenu">
<af:popup id="tableContextMenu">
<af:menu>
<jsp:include page="/contextMenu.jsp" flush="true"/>
</af:menu>
</af:popup>
</f:facet>
....
这是contextMenu.jsp的一部分。这个想法是用来根据“whereami”的会话作用域值显示上下文菜单的各个部分:
<af:commandMenuItem text="Review Person"
actionListener="#{personStatusBean.launchPopup}" />
<af:separator />
<af:switcher facetName="#{sessionScope.whereami}"
defaultFacet="default">
<f:facet name="default">
<af:commandMenuItem text="Main Menu" />
</f:facet>
<f:facet name="location1">
<af:commandMenuItem text="Do Something" />
<af:commandMenuItem text="Do Something Else" />
</f:facet>
有人可以帮忙吗?
答案 0 :(得分:1)
你应该创建一个声明性组件来执行此操作...
检查一下https://blogs.oracle.com/adffun/entry/fun_with_declarative_components
答案 1 :(得分:1)
声明性菜单是这样做的一种方式,另一种方法是使用页面碎片并将其包含在一个任务流中,然后将其作为一个区域引入页面。