把tabPanel向前推进:最好的方法?

时间:2016-03-03 10:32:14

标签: xpages tabpanel

我用sessionScope尝试了这个(没有工作):

以下标签应该可以通过变量' m1'来控制:

<xp:tabbedPanel id="tabbedPanel1"
    selectedTab="#{javascript:sessionScope.get('m1')}">
    <xp:tabPanel label="Config" id="conf">
        <xc:k_conf></xc:k_conf>
    </xp:tabPanel>
    <xp:tabPanel label="Solution" id="sol">
        <xc:k_sol></xc:k_sol>
    </xp:tabPanel>
</xp:tabbedPanel>

在控制中,k_conf是一个按钮&#39;计算&#39;执行代理,然后设置可变量“m1”。到了&#39; sol。 我希望,Tab切换到&#39; Solution&#39;,但没有任何反应(尽管refreshmode =&#34;完成&#34;)。

<xp:button value="calculate" id="button1">
    <xp:eventHandler event="onclick" submit="true" refreshMode="complete">
        ...
        <xp:executeScript>
            <xp:this.script><![CDATA[#{javascript:
                ...
                agent.runWithDocumentContext(docVG.getDocument());
                sessionScope.put("m1","sol");
                }]]>
        </xp:this.script>
    </xp:executeScript>
    ...
</xp:button>

另一种方法是使用组件(没有工作因为TabPanel不允许显示&#39;):

 <xp:this.action>
   <![CDATA[#{javascript:
         var c = getComponent("IdofTab");
         c.show("IdofTab");
      }]]>
 </xp:this.action>

1 个答案:

答案 0 :(得分:5)

sessionScope方法应该有效,我只是尝试了并验证了这一点。按钮eventHandler是否有一些CSJS部分未返回true并因此阻止执行SSJS executeScript?

对于第二种方法,您可以使用选项卡式面板的setSelectedTab方法而不是show,例如:

<xp:button id="button2" value="Change Tab 4">
    <xp:eventHandler event="onclick" submit="true" refreshMode="complete">
        <xp:this.action>
            <![CDATA[#{javascript:
                 var c = getComponent("tabbedPanel1");
                 c.setSelectedTab("tabPanel4");
              }]]>
        </xp:this.action>
    </xp:eventHandler>
</xp:button>