Skip to main content
Nintex Community Menu Bar

Reset multiple Yes/No controls to 'No' using JavaScript

  • May 2, 2017
  • 1 reply
  • 10 views

Forum|alt.badge.img+3

Does anyone have a JavaScript example showing me how to reset multiple yes/no controls to the default of 'No' using a button? Ta:)

1 reply

Forum|alt.badge.img+10
  • May 3, 2017

Try this one

 NWF$('#'+ jsvControlName).find('input[value='Yes']').attr('checked', false);