No, not at all. I get Dojo-ififed tags, but they have no label or anything 
else, for that
matter. They are just divs with the content of the tab, but no label. I will 
list the JSP
content I'm using, and the resulting output.

The JSP code
======================================================
<%@ taglib uri="/struts-tags" prefix="st" %>

<st:tabbedPanel id="tabContainer" selectedTab="test1">
        <st:div id="test1" label="Test One">
                One
        </st:div>

        <st:div id="test2" label="Test Two">
                Two
        </st:div>
</st:tabbedPanel>
======================================================


The output
======================================================
<script type="text/javascript">
  dojo.require("dojo.widget.TabContainer");
  dojo.require("dojo.widget.LinkPane");
  dojo.require("dojo.widget.ContentPane");
</script>

<div dojoType="TabContainer" id="tabContainer" selectedTab="test1" 
doLayout="false">
        <div dojoType="struts:BindDiv" id="test1" label="Test One" 
showError="true">
                One
        </div>
        <div dojoType="struts:BindDiv" id="test2" label="Test Two" 
showError="true">
                Two
        </div>
</div>
======================================================


      

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

Reply via email to