• 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: Show radio group label, not value

Show radio group label, not value 10 years 9 months ago #28278

  • kai920
  • kai920's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
I want to display a radio group's label (an image) rather than the value. Followed the instructions on previewing data:

My radio group is set up like this:
1|<img src="http://placehold.it/90x90" />
2|<img src="http://placehold.it/90x90" />
3|<img src="http://placehold.it/90x90" />
4|<img src="http://placehold.it/90x90" />
5|<img src="http://placehold.it/90x90" />
6|<img src="http://placehold.it/90x90" />

And the javascript code:
<script type="text/javascript">
function preV(param1, param2, param3, param4)
{
if (param2 == 3 && param3 == 3)
{
 
var i;
for(i=0;i<document.getElementsByName('form[style]').length;i++)
if (document.getElementById('style'+i).checked)
document.getElementById('styleP').innerHTML = document.getElementById('style'+i).value;
}
rsfp_changePage(param1, param2, param3, param4);
}
</script>

This code works but only displays the value of 1. How can I display the image instead? (prefer not to have to do extra code like "if style = 1, display xxx image"
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!