Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2021-01-07 03:07 PM
Ilya Khen hi Ilya any possibilities to deselect the value list (radio button) using the custom code
2021-01-07 03:10 PM
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.
2021-01-08 09:56 AM
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)
2021-01-08 11:49 AM
You are setting it over FE, which is not working past v5. Try to utilize $CM.setFieldValue function.
2021-01-11 09:06 AM
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)
2021-01-11 09:34 AM
I believe CM has limitations in read mode.
2021-01-11 10:20 AM
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
2021-01-11 01:46 PM
hi david 22069 is field ID correct?
2021-01-11 01:49 PM
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