We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 48828
    • 3 Posts
    Hi all.
    I am a newbie with Modx
    My question is how to display a tabs content using the tab like http://getbootstrap.com/javascript/#tabs with getResource or any other the way?
    Thank for your support
      • 4172
      • 5,888 Posts
      you need two getResources - calls.

      One for the tabs, another one for the panes.

      with tpl-chunks like:

      <li [[+idx:is=`1`:then=`class="active"`:else=``]] ><a href="[[~[[*id]]]]#[[+menutitle]]" role="tab" data-toggle="tab">[[+menutitle]]</a></li>


      and

      <div class="tab-pane [[+idx:is=`1`:then=`active`:else=``]]" id="#[[+menutitle]]">[[+content]]</div>
        -------------------------------

        you can buy me a beer, if you like MIGX

        http://webcmsolutions.de/migx.html

        Thanks!
        • 48828
        • 3 Posts
        Hi Bruno17,
        Thank for your comment

        All is work fine right now smiley

        Thank you