I've looked over the RSForm Pro documentation on showing hidden fields (
www.rsjoomla.com/customer-support/docume...-or-hide-fields.html) but I am not familiar with PHP and this code by itself, does not work. I'm assuming there needs to be some input on my side, any help would be appreciated.
I have added (per the documentation) this script in the form layout:
<script type="text/javascript">
function displayField()
{
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="";
}
</script>
I also added onclick="displayField();" to the Additional Attributes of the radio button that I wish to trigger the hidden fields.
Then I added the <tr id="hide" to the five conditions I wish to become visible upon selecting the radio button.
What am I missing? Do I need to input the field names of the hidden values I want to make visable? If so, where?