• 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: Hidden Area shows when check button clicked

Hidden Area shows when check button clicked 14 years 9 months ago #7863

Hi team,

Was look at this: www.precisedesign.com/graphic-design-quote.php
and was wondering if RS forms Pro can do the same thing... If you click on (Required Services / Logo) or (Required Services / Business card) it opens up and displays other options that can be clicked...

Has anyone else done this and would like to share with me how they did it.
The administrator has disabled public write access.

Re:Hidden Area shows when check button clicked 14 years 9 months ago #7867

  • bogdanc
  • bogdanc's Avatar
  • OFFLINE
  • Moderator
  • Posts: 669
  • Thank you received: 11
Hello,

You can refer to this article about creating text boxes that appear only when a certain option (from a check box, radio group, drop down) is selected:

www.rsjoomla.com/customer-support/docume...-or-hide-fields.html

Regards!
The administrator has disabled public write access.

Re:Hidden Area shows when check button clicked 14 years 9 months ago #7945

  • josinjo
  • josinjo's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
Hello!

I referred to this article about creating text boxes that appear only when a certain option is selected and it works great in FIREFOX but doesnt work at all in IE 7 or IE 8...it works in IE 6:)

Does anyone know how to make it work in IE7 or IE8?

Thank you

Joseph
The administrator has disabled public write access.

Re:Hidden Area shows when check button clicked 14 years 9 months ago #7979

  • matt
  • matt's Avatar
  • OFFLINE
  • Expert Boarder
  • Posts: 136
  • Thank you received: 14
Hi!

I am not a JavaScript expert, but if you do like this it might solve the problem.
In the code add "block" or "inline" for the selections you like to be shown.

Like this:
if(document.getElementsByName('form[Radio]')[0].checked)
  document.getElementById('hide').style.display="none"; 
if(document.getElementsByName('form[Radio]')[1].checked) 
  document.getElementById('hide').style.display="block";
 

Matt
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!