It's probably a simple quesiton but I can't figure out how I could realize it. I have the following code:
<div id="tabContainer" dojoType="dijit.layout.TabContainer" region="center" tabStrip="true">
<div id="tab1" dojoType="dijit.layout.ContentPane" title="TITLE1" selected="true">
LINK TO TAB2
</div>
<div id="tab2" dojoType="dijit.layout.ContentPane" title="TITLE2" selected="false">
some text
</div>
What I want to do is have a link from Tab1 to Tab2. If I use the following link it doesn't work:
<a href="name_of_the_file.html#TITLE2">
If I put the same link on another html file it works perfectly. Any advice how the correct link should look like? Thank s alot!
TTP