希望快点…
我需要在页面上单独按钮的单击事件中触发uncheckAll事件,我尝试了以下操作:
$('.masterProviderOrgsListBox').multiselect().uncheckAll();
但这不是公认的方法.我基本上想要触发当您单击标题中的“取消全部选中”框时触发的相同方法.
我以前这样做:
$('.masterProviderOrgsListBox option:selected').removeAttr("selected");
但这会删除实际多选而不是jQuery UI小部件的选择.
无法在文档中找到任何想法,任何想法?
解决方法
Methods
After an instance has been initialized,interact with it by calling
any of these methods:
// example: $("#multiselect").multiselect("method_name");
…可以在方法下的小部件documentation中找到
$("#multiselect").multiselect("uncheckAll");