Hi,
Is there a way to deactivate one (or several choices) of a radio buttons field without hiding it (or them) ? In order to keep it visible to the user but with no possibility to select it.
Thank you,
Cedric
Hi,
Is there a way to deactivate one (or several choices) of a radio buttons field without hiding it (or them) ? In order to keep it visible to the user but with no possibility to select it.
Thank you,
Cedric
Ok, after more research, it seems that the only way to disable an option is to use javascript.
That is correct. Did you need help with the JavaScript to disable a radio button, or did you already work it out? If you need help, please post a link to the page on your site where the form is embedded and let us know which options you want to hide.
Thank you for your reply.
I used used a little bit of jQuery to disable the wanted choices like this:
$(".gform_classname_wanted_choice input").attr("disabled","disabled");
Glad you figured it out. Thank you for the update.