我正在尝试使用此处的jquery uix multiselect插件:
https://github.com/yanickrochon/jquery.uix.multiselect
它工作正常,但我需要默认情况下折叠我的optgroups。怎么办呢?
答案 0 :(得分:1)
有文件link
collapsableGroups(boolean)(默认值:true):告诉选项组是否可以折叠
// initialize option
$(selector).multiselect({ collapsableGroups: false });
或此one
var sel = $("#yourSelect").multiselect();
setTimeout(function() { // let the refresh method happen
$("#multiselect_groups").next().find("div.group-element").parent()
.each(function() {
if ($(this).data("fnToggle")) $(this).data("fnToggle")();
});
}, 10);