I have a tabbed panel set up as follows

<s:tabbedPanel id="questionPanel" doLayout="true"
cssClass="questionTabPanelDesign">

<s:div id="questionTab" label="Question" theme="ajax">
    Static Content...
</s:div>

<s:div id="udfTab" label="UDF" theme="ajax" listenTopics="/editUdfs">
    Static link <a href="javascript:editUdf()">Edit UDF</a>
</s:div>

<s:div id="docTab" label="Docs" theme="ajax">
    Static  content
</s:div>

</s:tabbedPanel>

When I click the link in the UDF tab, the /editUdfs  gets published
and the edit gui displays in the tab,  the problem is if I click on
another tab after this happens, the contents of that tab does not
display and the UDF gui still shows.

Do I have anything set up wrong?

I have the tab panel inside a Split Container that calls the tabs from
ajax (loadDetails)  Im not sure if that makes any difference.  Here is
a code sample:

  <div dojoType="LayoutContainer" >

            <div dojoType="SplitContainer" orientation="horizontal"
sizerWidth="3" style="width:100%;height:550px;">
                <div dojoType="ContentPane" style="overflow:auto;">

                    <s:url id="getTree" action="getTree">
                        <s:param name="id" value="%{id}"/>
                    </s:url>

                    <s:div theme="ajax" href="%{getTree}">



                    </s:div>

                </div>

                <div dojoType="ContentPane" class="detailsContentPane">

                    <s:url id="loadDetails" action="getDetails">
                        <s:param name="id" value="492"/>
                    </s:url>

                    <s:div theme="ajax" href="%{loadDetails}">

                    </s:div>


                </div>
            </div>

        </div>

Any suggestions would be great.

Thank you,

Rich

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to