Hi All,
I'm trying to uncheck all the selections made in the multi-select check box in on-change event of another dropdown using jQuery. When it is a multi-select list box i'm able to achieve the same. can anyone please help me with the solution
Hi All,
I'm trying to uncheck all the selections made in the multi-select check box in on-change event of another dropdown using jQuery. When it is a multi-select list box i'm able to achieve the same. can anyone please help me with the solution
Hello shanthi sritharan,
As Marian Hatala mentioned – you're going to need a little JavaScript to make this happen. For instance, I created a JavaScript Button with the following configuration:
Using the Client click property here, I'm about to clear my selections:
NWF$('input:checkbox').not(this).prop('checked', this.checked);
This same logic can be extended to the change-event of a drop-down. It really just depends on your specific use-case. Thanks!
Hi Patrick Abel
Do you know if this should work for a SQL Request control that's rendered as a Multi CHoice check box as well?
I'm trying the code on my form but it doesn't clear the selected choices.
NWF$('input:selProductCodes').not(this).prop('checked', this.checked);
In this case selProductCodes is the name of my SQL Request control. Is this correct?
Hey Abel
Could you assist on my query: https://community.nintex.com/thread/11226
would appreciate. thanks
Perfect, what would the code be if you wanted to check all the boxes?
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.