我正在使用 JDeveloper 11.1.1.7.0。
我有两个面板的 jsff 片段。左侧面板包含链接,右侧面板将根据单击左侧面板上的链接显示数据。
左侧面板中的链接使用迭代器呈现,并且该迭代器位于具有 layout="scroll" 的 panelGroupLayout 中。
当我向下滚动到左侧面板的末尾并单击链接时,右侧面板中的内容加载正常,但左侧面板的滚动条正在重置为顶部。这样我就无法在左侧面板中看到选定的链接。
有没有办法将滚动条固定在同一位置?
<af:panelGroupLayout id="pgl3" layout="horizontal" valign="top" inlineStyle="height:200px;" styleClass="AFStretchWidth">
<af:panelGroupLayout layout="scroll" halign="left" id="pgl4" inlineStyle="width:100px;"
partialTriggers="i1:cl1">
<af:iterator value="#{pageFlowScope.headerBean.links}" id="i1" var="link">
<af:commandLink actionListener="#{pageFlowScope.headerBean.linkCliked}" id="cl1" inlineStyle="border: solid 1px black;"
partialSubmit="true">
<af:outputText value="#{link}" id="ot6"
styleClass="selectedLinkStyle"
rendered="#{pageFlowScope.headerBean.selectedLink}"/>
<af:outputText value="#{link}" id="ot7"
styleClass="unselectedLinkStyle"
rendered="#{not pageFlowScope.headerBean.selectedLink}"/>
<f:attribute name="selectedLinkName"
value="#{link}"/>
</af:commandLink>
</af:iterator>
</af:panelGroupLayout>
<af:panelGroupLayout layout="vertical" styleClass="AFStretchWidth" halign="right"
id="pgl5" inlineStyle="border: solid 1px black;height:200px;"
partialTriggers="i1:cl1">
<af:outputText value="#{pageFlowScope.headerBean.linkData} id="ot5"/>
</af:panelGroupLayout>
</af:panelGroupLayout>