Is it possible to jump between pages depending on a selectlist value?

You can jump across your form pages using the native function ff_switchpage(). This example will show you how to do this depending on the selected value from a select list element. The action will be fired when a custom button is clicked on. First create a new select list named switchlist with this List values:

1;Select;select
0;Page 2;2
0;Page 3;3
0;page 4;4

Create a new custom button, for example with the name mybutton, value Jump!, and create a custon Actionscript in it advanced options with this code:

function ff_mybutton_action(element, action)
{
     switch (action)
     {
          case 'click':
          switch(ff_getElementByName('switchlist').value )
          {
               case '2':
               ff_switchpage(2);
               break;
               case '3':
               ff_switchpage(3);
               case '4':
               ff_switchpage(4);
                } break; 
            default:; 
           } // switch 
  } // ff_mybutton_action

 

 

 

 

Special Offer

Sale! All subscriptions at a special price!

Includes prio support, all of our current and future Joomla!® extensions and Joomla!® templates for the duration of your membership.

Get it from here

3rd Party Discount - 25% Off

We help you to keep your costs under control. If you are a new member and purchased a form building tool from a different form vendor, then you'll get a 25% discount on our subscription plans.

How to receive the discount:

Send us a quick email to sales@crosstec.org with a proof of purchase (for example a paypal receipt), await payment instructions and enjoy your membership!