Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
Use IOL with this code:
$("#_fid_6").bind("multiselectclose", function(event, ui){If _fid_6 is a multi-select field then the popup selection menu will reopen if less than two selections are made. This should be enough of annoyance that your users will conform. As to picking one large and one small state you would have to code that logic to suit your own needs.
var selections = $("#_fid_6").multiselect("getChecked");
if (selections.length < 2) {
$("#_fid_6").multiselect("open");
}
});