• 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: multiple choise & multiple action

multiple choise & multiple action 12 years 3 hours ago #23071

hi
Firstly, I want to learn is this possible:

Please think a multiple choise field which has "yes" or "no" and a submit button.

If user choice "yes" and click submit then form will display a custom message. If user choice "no" and click submit then form will submit datas and redriect new url.

Is this possible in this extension?
The administrator has disabled public write access.

multiple choise & multiple action 11 years 11 months ago #23082

  • adrianp
  • adrianp's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 631
  • Thank you received: 146
Hello,

There is no default feature for this, however, due to RSForm!Pro flexible nature this can be implemented via specialized scripting areas. You can use a similar script as the one that follows within the "Script called after form has been processed" area:
if($_POST['form']['radiogroup_name'] == 'No'){
header( 'Location: http://www.rsjoomla.com' ) ;
exit();
}

The script above assumes that your radio group has two items(Yes and No) and for it to work properly, replace "radiogroup_name" with your radio component exact name.

More information on these scripting areas can be found here:

www.rsjoomla.com/support/documentation/v...602-php-scripts.html
This is not official customer support. To receive your support, submit a support ticket here.
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!