Important Update: Community URLs redirect issues are partially resolved. Learn More. .

cancel
Showing results for 
Search instead for 
Did you mean: 

deselect the value list radio button using the custom code

ramss
Contributor II

Ilya Khen‌ hi Ilya any possibilities to deselect the value list (radio button) using the custom code 

12 REPLIES 12

Ilya_Khen
Champion III

Ramkumar Mani,

 

As I see you have asked this from David already, so suggest to wait for the response:

https://community.rsa.com/message/963797?commentID=963797&et=watches.email.thread#comment-963797 

 

This thread also contains information about VL set:

https://community.rsa.com/thread/201910 

You can try to utilize it.

ok thanks a lot Ilya Khen‌ i will try

Ilya Khen‌ hi illya i have tried this below thing to rest the radio button value list but it is not supporting. Could you please suggest any other option is there

 

$("input[name='<selector>']").attr("checked", false)

You are setting it over FE, which is not working past v5. Try to utilize $CM.setFieldValue function.

thanks a lot it helped me.  I have one more query $CM.getFieldValue(ID) value is showing null but the radio button having value but it is readyonly. any possibility to find the value in readonly (radio button)

I believe CM has limitations in read mode.

Ramkumar, this works for me in IE:

<script type="text/javascript">
Sys.Application.add_load(function (){
$('input[name$="f22069c"]').attr('checked', false);
});
</script>

‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍

 Advisory Consultant

hi david 22069 is field ID correct?

No, sorry.  I should have clarified that you'll need to update the field id to match the field id of the field in your environment.

 Advisory Consultant