Nintex for SharePoint Forum
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
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
Solved! Go to 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?