|
| 1 | +// Multi-select handler |
| 2 | +$("#subject-select").multiselect({ |
| 3 | + includeSelectAllOption: true, |
| 4 | + numberDisplayed: 5, |
| 5 | + onChange: function (option, checked, select) { |
| 6 | + var csub = $(option).val(); |
| 7 | + if (checked == true) { |
| 8 | + if (subs.indexOf(csub) < 0) subs.push(csub); |
| 9 | + } else { |
| 10 | + var idx = subs.indexOf(csub); |
| 11 | + if (idx >= 0) subs.splice(idx, 1); |
| 12 | + // In case a conf with multiple types (including this type) is wrongly hid, show all confs with at least one checked type. |
| 13 | + for (var i = 0; i < subs.length; i++) { |
| 14 | + // $('.' + subs[i] + '-conf').show(); |
| 15 | + } |
| 16 | + } |
| 17 | + update_filtering({ subs: subs, all_subs: all_subs }); |
| 18 | + }, |
| 19 | + onSelectAll: function (options) { |
| 20 | + subs = all_subs; |
| 21 | + update_filtering({ subs: subs, all_subs: all_subs }); |
| 22 | + }, |
| 23 | + onDeselectAll: function (options) { |
| 24 | + subs = []; |
| 25 | + update_filtering({ subs: subs, all_subs: all_subs }); |
| 26 | + }, |
| 27 | + buttonText: function (options, select) { |
| 28 | + if (options.length === 0) { |
| 29 | + return "None selected"; |
| 30 | + } else { |
| 31 | + var labels = []; |
| 32 | + options.each(function () { |
| 33 | + if ($(this).attr("value") !== undefined) { |
| 34 | + labels.push($(this).attr("value")); |
| 35 | + } else { |
| 36 | + labels.push($(this).html()); |
| 37 | + } |
| 38 | + }); |
| 39 | + return labels.join(", ") + ""; |
| 40 | + } |
| 41 | + }, |
| 42 | + buttonTitle: function (options, select) { |
| 43 | + return ""; |
| 44 | + }, |
| 45 | +}); |
0 commit comments