Forums

tabs

zingeonaut 15 Jul, 2013
Hi, I have been designing a form with 3 tabs. I would love to hide/show one of the tabs according to the selection in a dropdown made by the user. I have checked the wizard and found no clues.

I would love to do something like


window.addEvent('domready', function() {
  $('donation_1').addEvent('change', function() {
    var index = this.selectedIndex;
    switch(index) {
      case 1:
       //HIDE TAB 2 OF THE FORM
    }
  });
});
GreyHead 30 Jul, 2013
Hi zingeonaut,

I'm not sure how you'd do that. If you can identify the elements of the tab and their IDs then it's probably possible with some JavaScript.

Bob
This topic is locked and no more replies can be posted.