Hope fast ...
I need to fire the uncheckAll event in the click event of a single button on my page, I tried the following:
$('.masterProviderOrgsListBox').multiselect().uncheckAll();
but this is not a recognized method. Basically, I want to run the same method that starts when you click "Cancel All" in the header.
I previously did this:
$('.masterProviderOrgsListBox option:selected').removeAttr("selected");
but this eliminates the choice in a real multi selector, not in jQuery widgets.
Could not find anything in the documentation, any ideas?
source share