1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
(function($){
var msMethods = {
'init' : function(options){
this.settings = {
disabledClass : 'disabled',
emptyArray : false
};
if(options) {
this.settings = $.extend(this.settings, options);
}
var multiSelects = this;
multiSelects.hide();
multiSelects.each(function(){
var ms = $(this);
if (ms.next('.ms-container').length == 0){
ms.attr('id', ms.attr('id') ? ms.attr('id') : 'ms-'+Math.ceil(Math.random()*1000));
var container = $('<div id="ms-'+ms.attr('id')+'" class="ms-container"></div>'),
selectableContainer = $('<div class="ms-selectable"></div>'),
selectedContainer = $('<div class="ms-selection"></div>'),
selectableUl = $('<ul class="ms-list"></ul>'),
selectedUl = $('<ul class="ms-list"></ul>');
if (multiSelects.settings.emptyArray){
if (ms.find("option[value='']").length == 0){
ms.prepend("<option value='' selected='selected'></option>");
} else {
ms.find("option[value='']").attr('selected', 'selected');
}
}
ms.data('settings', multiSelects.settings);
var currentOptgroup = null;
ms.find('optgroup,option').each(function(){
if ($(this).is('optgroup')){
currentOptgroup = $(this).attr('label');
selectableUl.append($('<li class="ms-optgroup-container" id="ms-optgroup-'+
$(this).attr('label')+'"><ul class="ms-optgroup"><li class="ms-optgroup-label">'+
$(this).attr('label')+'</li></ul></li>'));
}
if ($(this).is("option:not(option[value=''])")){
var selectableLi = $('<li class="ms-elem-selectable" ms-value="'+$(this).val()+'">'+$(this).text()+'</li>');
if ($(this).attr('title'))
selectableLi.attr('title', $(this).attr('title'));
if ($(this).attr('disabled') || ms.attr('disabled')){
selectableLi.attr('disabled', 'disabled');
selectableLi.addClass(multiSelects.settings.disabledClass);
}
selectableLi.click(function(){
ms.multiSelect('select', $(this).attr('ms-value'));
});
var container = currentOptgroup ? selectableUl.children('#ms-optgroup-'+currentOptgroup).find('ul').first() : selectableUl;
container.append(selectableLi);
}
});
if (multiSelects.settings.selectableHeader){
selectableContainer.append(multiSelects.settings.selectableHeader);
}
selectableContainer.append(selectableUl);
if (multiSelects.settings.selectedHeader){
selectedContainer.append(multiSelects.settings.selectedHeader);
}
selectedContainer.append(selectedUl);
container.append(selectableContainer);
container.append(selectedContainer);
ms.after(container);
ms.find('option:selected').each(function(){
ms.multiSelect('select', $(this).val(), 'init');
});
}
});
},
'refresh' : function() {
$("#ms-"+$(this).attr("id")).remove();
$(this).multiSelect("init");
},
'select' : function(value, method){
var ms = this,
selectedOption = ms.find('option[value="'+value +'"]'),
text = selectedOption.text(),
titleAttr = selectedOption.attr('title');
var selectedLi = $('<li class="ms-elem-selected" ms-value="'+value+'">'+text+'</li>'),
selectableUl = $('#ms-'+ms.attr('id')+' .ms-selectable ul'),
selectedUl = $('#ms-'+ms.attr('id')+' .ms-selection ul'),
selectableLi = selectableUl.children('li[ms-value="'+value+'"]'),
haveToSelect = !selectableLi.hasClass(ms.data('settings').disabledClass) && value != '' &&
((method == 'init' && selectedOption.attr('selected')) ||
(method != 'init' && !selectedOption.attr('selected')))
if (haveToSelect ){
var parentOptgroup = selectableLi.parent('.ms-optgroup');
if (parentOptgroup.length > 0)
if (parentOptgroup.children('.ms-elem-selectable:not(:hidden)').length == 1)
parentOptgroup.children('.ms-optgroup-label').hide();
selectableLi.hide();
selectedOption.attr('selected', 'selected');
if(titleAttr){
selectedLi.attr('title', titleAttr)
}
selectedLi.click(function(){
ms.multiSelect('deselect', $(this).attr('ms-value'));
});
selectedUl.append(selectedLi);
if (ms.find("option[value='']")){
ms.find("option[value='']").removeAttr('selected');
}
if(method != 'init'){
selectedUl.trigger('change');
selectableUl.trigger('change');
if (typeof ms.data('settings').afterSelect == 'function' && method != 'init') {
ms.data('settings').afterSelect.call(this, value, text);
}
}
}
},
'deselect' : function(value){
var ms = this,
selectedUl = $('#ms-'+ms.attr('id')+' .ms-selection ul'),
selectedOption = ms.find('option[value="'+value +'"]'),
selectedLi = selectedUl.children('li[ms-value="'+value+'"]');
if(selectedLi){
var selectableUl = $('#ms-'+ms.attr('id')+' .ms-selectable ul'),
selectedUl = $('#ms-'+ms.attr('id')+' .ms-selection ul'),
selectableLi = selectableUl.children('li[ms-value="'+value+'"]'),
selectedLi = selectedUl.children('li[ms-value="'+value+'"]');
var parentOptgroup = selectableLi.parent('.ms-optgroup');
if (parentOptgroup.length > 0)
parentOptgroup.children('.ms-optgroup-label').show();
selectedOption.removeAttr('selected');
selectableLi.show();
selectedLi.remove();
if (ms.data('settings').emptyArray && selectedUl.children('li').length == 0){
if (ms.find("option[value='']")){
ms.find("option[value='']").attr('selected', 'selected');
}
}
selectedUl.trigger('change');
selectableUl.trigger('change');
if (typeof ms.data('settings').afterDeselect == 'function') {
ms.data('settings').afterDeselect.call(this, value, selectedLi.text());
}
}
},
'select_all' : function(){
var ms = this;
ms.find("option:not(option[value=''])").each(function(){
ms.multiSelect('select', $(this).val(), 'select_all');
});
},
'deselect_all' : function(){
var ms = this;
ms.find("option:not(option[value=''])").each(function(){
ms.multiSelect('deselect', $(this).val(), 'deselect_all');
});
}
};
$.fn.multiSelect = function(method){
if ( msMethods[method] ) {
return msMethods[method].apply( this, Array.prototype.slice.call( arguments, 1 ));
} else if ( typeof method === 'object' || ! method ) {
return msMethods.init.apply( this, arguments );
} else {
if(console.log) console.log( 'Method ' + method + ' does not exist on jquery.multiSelect' );
}
return false;
};
})(jQuery);
|