• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: Conditional multi-page select by dropdown

Conditional multi-page select by dropdown 5 years 4 months ago #39710

Hello, I have already read that you can skip pages of a form on multi-pages using checkboxes.
https://www.rsjoomla.com/support/documentation/rsform-pro/custom-scripting/how-to-create-a-conditional-multi-page-form.html

However, since I do not use any checkboxes but special dropdowns in my form, I am not getting any further on how I have to adjust the Javascript so that it works.

It probably doesn't work like this:
if (page == 4 && document.getElementById ('Participation_event'). value && typeof validate == 'no') {
rsfp_changePage (formId, page + 1, totalPages, validate);
return '';
}

Has anyone given me a solution to this?
The administrator has disabled public write access.

Conditional multi-page select by dropdown 3 years 4 months ago #41688

  • lactic8
  • lactic8's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hi,
Just have received the answer from the support team.
In order to check a Dropdown value, you need this :

document.getElementById('NAMEOFYOURDROPDOWN').value == "selection value here"

So just replace the checkbox example (document.getElementById('skip0').checked) with this.
The administrator has disabled public write access.
  • 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!