Blame view

sources/core/js/jquery.multiselect.js 18.4 KB
31b7f2792   Kload   Upgrade to ownclo...
1
  /* jshint forin:true, noarg:true, noempty:true, eqeqeq:true, boss:true, undef:true, curly:true, browser:true, jquery:true */
03e52840d   Kload   Init
2
  /*
31b7f2792   Kload   Upgrade to ownclo...
3
4
   * jQuery MultiSelect UI Widget 1.13
   * Copyright (c) 2012 Eric Hynds
03e52840d   Kload   Init
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
   *
   * http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/
   *
   * Depends:
   *   - jQuery 1.4.2+
   *   - jQuery UI 1.8 widget factory
   *
   * Optional:
   *   - jQuery UI effects
   *   - jQuery UI position utility
   *
   * Dual licensed under the MIT and GPL licenses:
   *   http://www.opensource.org/licenses/mit-license.php
   *   http://www.gnu.org/licenses/gpl.html
   *
  */
  (function($, undefined){
  
  var multiselectID = 0;
  
  $.widget("ech.multiselect", {
  
  	// default options
  	options: {
  		header: true,
  		height: 175,
  		minWidth: 225,
  		classes: '',
  		checkAllText: 'Check all',
  		uncheckAllText: 'Uncheck all',
  		noneSelectedText: 'Select options',
  		selectedText: '# selected',
  		selectedList: 0,
31b7f2792   Kload   Upgrade to ownclo...
38
39
  		show: null,
  		hide: null,
03e52840d   Kload   Init
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
  		autoOpen: false,
  		multiple: true,
  		position: {}
  	},
  
  	_create: function(){
  		var el = this.element.hide(),
  			o = this.options;
  
  		this.speed = $.fx.speeds._default; // default speed for effects
  		this._isOpen = false; // assume no
  
  		var
  			button = (this.button = $('<button type="button"><span class="ui-icon ui-icon-triangle-2-n-s"></span></button>'))
  				.addClass('ui-multiselect ui-widget ui-state-default ui-corner-all')
  				.addClass( o.classes )
  				.attr({ 'title':el.attr('title'), 'aria-haspopup':true, 'tabIndex':el.attr('tabIndex') })
  				.insertAfter( el ),
  
  			buttonlabel = (this.buttonlabel = $('<span />'))
  				.html( o.noneSelectedText )
  				.appendTo( button ),
  
  			menu = (this.menu = $('<div />'))
  				.addClass('ui-multiselect-menu ui-widget ui-widget-content ui-corner-all')
  				.addClass( o.classes )
31b7f2792   Kload   Upgrade to ownclo...
66
  				.appendTo( document.body ),
03e52840d   Kload   Init
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
  
  			header = (this.header = $('<div />'))
  				.addClass('ui-widget-header ui-corner-all ui-multiselect-header ui-helper-clearfix')
  				.appendTo( menu ),
  
  			headerLinkContainer = (this.headerLinkContainer = $('<ul />'))
  				.addClass('ui-helper-reset')
  				.html(function(){
  					if( o.header === true ){
  						return '<li><a class="ui-multiselect-all" href="#"><span class="ui-icon ui-icon-check"></span><span>' + o.checkAllText + '</span></a></li><li><a class="ui-multiselect-none" href="#"><span class="ui-icon ui-icon-closethick"></span><span>' + o.uncheckAllText + '</span></a></li>';
  					} else if(typeof o.header === "string"){
  						return '<li>' + o.header + '</li>';
  					} else {
  						return '';
  					}
  				})
  				.append('<li class="ui-multiselect-close"><a href="#" class="ui-multiselect-close"><span class="ui-icon ui-icon-circle-close"></span></a></li>')
  				.appendTo( header ),
  
  			checkboxContainer = (this.checkboxContainer = $('<ul />'))
  				.addClass('ui-multiselect-checkboxes ui-helper-reset')
  				.appendTo( menu );
  
  		// perform event bindings
  		this._bindEvents();
  
  		// build menu
  		this.refresh( true );
  
  		// some addl. logic for single selects
  		if( !o.multiple ){
  			menu.addClass('ui-multiselect-single');
  		}
  	},
  
  	_init: function(){
  		if( this.options.header === false ){
  			this.header.hide();
  		}
  		if( !this.options.multiple ){
  			this.headerLinkContainer.find('.ui-multiselect-all, .ui-multiselect-none').hide();
  		}
  		if( this.options.autoOpen ){
  			this.open();
  		}
  		if( this.element.is(':disabled') ){
  			this.disable();
  		}
  	},
  
  	refresh: function( init ){
  		var el = this.element,
  			o = this.options,
  			menu = this.menu,
  			checkboxContainer = this.checkboxContainer,
  			optgroups = [],
31b7f2792   Kload   Upgrade to ownclo...
123
  			html = "",
03e52840d   Kload   Init
124
125
126
  			id = el.attr('id') || multiselectID++; // unique ID for the label & option tags
  
  		// build items
31b7f2792   Kload   Upgrade to ownclo...
127
  		el.find('option').each(function( i ){
03e52840d   Kload   Init
128
129
130
131
132
  			var $this = $(this),
  				parent = this.parentNode,
  				title = this.innerHTML,
  				description = this.title,
  				value = this.value,
31b7f2792   Kload   Upgrade to ownclo...
133
  				inputID = 'ui-multiselect-' + (this.id || id + '-option-' + i),
03e52840d   Kload   Init
134
135
  				isDisabled = this.disabled,
  				isSelected = this.selected,
31b7f2792   Kload   Upgrade to ownclo...
136
137
  				labelClasses = [ 'ui-corner-all' ],
  				liClasses = (isDisabled ? 'ui-multiselect-disabled ' : ' ') + this.className,
03e52840d   Kload   Init
138
139
140
  				optLabel;
  
  			// is this an optgroup?
31b7f2792   Kload   Upgrade to ownclo...
141
142
  			if( parent.tagName === 'OPTGROUP' ){
  				optLabel = parent.getAttribute( 'label' );
03e52840d   Kload   Init
143
144
145
  
  				// has this optgroup been added already?
  				if( $.inArray(optLabel, optgroups) === -1 ){
31b7f2792   Kload   Upgrade to ownclo...
146
  					html += '<li class="ui-multiselect-optgroup-label ' + parent.className + '"><a href="#">' + optLabel + '</a></li>';
03e52840d   Kload   Init
147
148
149
150
151
  					optgroups.push( optLabel );
  				}
  			}
  
  			if( isDisabled ){
31b7f2792   Kload   Upgrade to ownclo...
152
  				labelClasses.push( 'ui-state-disabled' );
03e52840d   Kload   Init
153
154
155
156
157
  			}
  
  			// browsers automatically select the first option
  			// by default with single selects
  			if( isSelected && !o.multiple ){
31b7f2792   Kload   Upgrade to ownclo...
158
  				labelClasses.push( 'ui-state-active' );
03e52840d   Kload   Init
159
  			}
31b7f2792   Kload   Upgrade to ownclo...
160
  			html += '<li class="' + liClasses + '">';
03e52840d   Kload   Init
161
162
  
  			// create the label
31b7f2792   Kload   Upgrade to ownclo...
163
164
  			html += '<label for="' + inputID + '" title="' + description + '" class="' + labelClasses.join(' ') + '">';
  			html += '<input id="' + inputID + '" name="multiselect_' + id + '" type="' + (o.multiple ? "checkbox" : "radio") + '" value="' + value + '" title="' + title + '"';
03e52840d   Kload   Init
165
166
167
  
  			// pre-selected?
  			if( isSelected ){
31b7f2792   Kload   Upgrade to ownclo...
168
169
  				html += ' checked="checked"';
  				html += ' aria-selected="true"';
03e52840d   Kload   Init
170
171
172
173
  			}
  
  			// disabled?
  			if( isDisabled ){
31b7f2792   Kload   Upgrade to ownclo...
174
175
  				html += ' disabled="disabled"';
  				html += ' aria-disabled="true"';
03e52840d   Kload   Init
176
177
178
  			}
  
  			// add the title and close everything off
31b7f2792   Kload   Upgrade to ownclo...
179
  			html += ' /><span>' + title + '</span></label></li>';
03e52840d   Kload   Init
180
181
182
  		});
  
  		// insert into the DOM
31b7f2792   Kload   Upgrade to ownclo...
183
  		checkboxContainer.html( html );
03e52840d   Kload   Init
184
185
186
  
  		// cache some moar useful elements
  		this.labels = menu.find('label');
31b7f2792   Kload   Upgrade to ownclo...
187
  		this.inputs = this.labels.children('input');
03e52840d   Kload   Init
188
189
190
191
192
193
194
195
196
197
198
199
200
  
  		// set widths
  		this._setButtonWidth();
  		this._setMenuWidth();
  
  		// remember default value
  		this.button[0].defaultValue = this.update();
  
  		// broadcast refresh event; useful for widgets
  		if( !init ){
  			this._trigger('refresh');
  		}
  	},
31b7f2792   Kload   Upgrade to ownclo...
201
  	// updates the button text. call refresh() to rebuild
03e52840d   Kload   Init
202
203
  	update: function(){
  		var o = this.options,
31b7f2792   Kload   Upgrade to ownclo...
204
  			$inputs = this.inputs,
03e52840d   Kload   Init
205
206
207
208
209
210
211
212
213
214
  			$checked = $inputs.filter(':checked'),
  			numChecked = $checked.length,
  			value;
  
  		if( numChecked === 0 ){
  			value = o.noneSelectedText;
  		} else {
  			if($.isFunction( o.selectedText )){
  				value = o.selectedText.call(this, numChecked, $inputs.length, $checked.get());
  			} else if( /\d/.test(o.selectedList) && o.selectedList > 0 && numChecked <= o.selectedList){
31b7f2792   Kload   Upgrade to ownclo...
215
  				value = $checked.map(function(){ return $(this).next().html(); }).get().join(', ');
03e52840d   Kload   Init
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
  			} else {
  				value = o.selectedText.replace('#', numChecked).replace('#', $inputs.length);
  			}
  		}
  
  		this.buttonlabel.html( value );
  		return value;
  	},
  
  	// binds events
  	_bindEvents: function(){
  		var self = this, button = this.button;
  
  		function clickHandler(){
  			self[ self._isOpen ? 'close' : 'open' ]();
  			return false;
  		}
  
  		// webkit doesn't like it when you click on the span :(
  		button
  			.find('span')
  			.bind('click.multiselect', clickHandler);
  
  		// button events
  		button.bind({
  			click: clickHandler,
  			keypress: function( e ){
  				switch(e.which){
  					case 27: // esc
  					case 38: // up
  					case 37: // left
  						self.close();
  						break;
  					case 39: // right
  					case 40: // down
  						self.open();
  						break;
  				}
  			},
  			mouseenter: function(){
  				if( !button.hasClass('ui-state-disabled') ){
  					$(this).addClass('ui-state-hover');
  				}
  			},
  			mouseleave: function(){
  				$(this).removeClass('ui-state-hover');
  			},
  			focus: function(){
  				if( !button.hasClass('ui-state-disabled') ){
  					$(this).addClass('ui-state-focus');
  				}
  			},
  			blur: function(){
  				$(this).removeClass('ui-state-focus');
  			}
  		});
  
  		// header links
  		this.header
  			.delegate('a', 'click.multiselect', function( e ){
  				// close link
  				if( $(this).hasClass('ui-multiselect-close') ){
  					self.close();
  
  				// check all / uncheck all
  				} else {
  					self[ $(this).hasClass('ui-multiselect-all') ? 'checkAll' : 'uncheckAll' ]();
  				}
  
  				e.preventDefault();
  			});
  
  		// optgroup label toggle support
  		this.menu
  			.delegate('li.ui-multiselect-optgroup-label a', 'click.multiselect', function( e ){
  				e.preventDefault();
  
  				var $this = $(this),
  					$inputs = $this.parent().nextUntil('li.ui-multiselect-optgroup-label').find('input:visible:not(:disabled)'),
31b7f2792   Kload   Upgrade to ownclo...
295
296
  					nodes = $inputs.get(),
  					label = $this.parent().text();
03e52840d   Kload   Init
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
  
  				// trigger event and bail if the return is false
  				if( self._trigger('beforeoptgrouptoggle', e, { inputs:nodes, label:label }) === false ){
  					return;
  				}
  
  				// toggle inputs
  				self._toggleChecked(
  					$inputs.filter(':checked').length !== $inputs.length,
  					$inputs
  				);
  
  				self._trigger('optgrouptoggle', e, {
  				    inputs: nodes,
  				    label: label,
  				    checked: nodes[0].checked
  				});
  			})
  			.delegate('label', 'mouseenter.multiselect', function(){
  				if( !$(this).hasClass('ui-state-disabled') ){
  					self.labels.removeClass('ui-state-hover');
  					$(this).addClass('ui-state-hover').find('input').focus();
  				}
  			})
  			.delegate('label', 'keydown.multiselect', function( e ){
  				e.preventDefault();
  
  				switch(e.which){
  					case 9: // tab
  					case 27: // esc
  						self.close();
  						break;
  					case 38: // up
  					case 40: // down
  					case 37: // left
  					case 39: // right
  						self._traverse(e.which, this);
  						break;
  					case 13: // enter
  						$(this).find('input')[0].click();
  						break;
  				}
  			})
  			.delegate('input[type="checkbox"], input[type="radio"]', 'click.multiselect', function( e ){
  				var $this = $(this),
  					val = this.value,
  					checked = this.checked,
  					tags = self.element.find('option');
  
  				// bail if this input is disabled or the event is cancelled
31b7f2792   Kload   Upgrade to ownclo...
347
  				if( this.disabled || self._trigger('click', e, { value: val, text: this.title, checked: checked }) === false ){
03e52840d   Kload   Init
348
349
350
  					e.preventDefault();
  					return;
  				}
31b7f2792   Kload   Upgrade to ownclo...
351
352
353
  				// make sure the input has focus. otherwise, the esc key
  				// won't close the menu after clicking an item.
  				$this.focus();
03e52840d   Kload   Init
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
  				// toggle aria state
  				$this.attr('aria-selected', checked);
  
  				// change state on the original option tags
  				tags.each(function(){
  					if( this.value === val ){
  						this.selected = checked;
  					} else if( !self.options.multiple ){
  						this.selected = false;
  					}
  				});
  
  				// some additional single select-specific logic
  				if( !self.options.multiple ){
  					self.labels.removeClass('ui-state-active');
  					$this.closest('label').toggleClass('ui-state-active', checked );
  
  					// close menu
  					self.close();
  				}
  
  				// fire change on the select box
  				self.element.trigger("change");
  
  				// setTimeout is to fix multiselect issue #14 and #47. caused by jQuery issue #3827
  				// http://bugs.jquery.com/ticket/3827
  				setTimeout($.proxy(self.update, self), 10);
  			});
  
  		// close each widget when clicking on any other element/anywhere else on the page
  		$(document).bind('mousedown.multiselect', function( e ){
  			if(self._isOpen && !$.contains(self.menu[0], e.target) && !$.contains(self.button[0], e.target) && e.target !== self.button[0]){
  				self.close();
  			}
  		});
  
  		// deal with form resets.  the problem here is that buttons aren't
  		// restored to their defaultValue prop on form reset, and the reset
  		// handler fires before the form is actually reset.  delaying it a bit
  		// gives the form inputs time to clear.
  		$(this.element[0].form).bind('reset.multiselect', function(){
31b7f2792   Kload   Upgrade to ownclo...
395
  			setTimeout($.proxy(self.refresh, self), 10);
03e52840d   Kload   Init
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
  		});
  	},
  
  	// set button width
  	_setButtonWidth: function(){
  		var width = this.element.outerWidth(),
  			o = this.options;
  
  		if( /\d/.test(o.minWidth) && width < o.minWidth){
  			width = o.minWidth;
  		}
  
  		// set widths
  		this.button.width( width );
  	},
  
  	// set menu width
  	_setMenuWidth: function(){
  		var m = this.menu,
  			width = this.button.outerWidth()-
  				parseInt(m.css('padding-left'),10)-
  				parseInt(m.css('padding-right'),10)-
  				parseInt(m.css('border-right-width'),10)-
  				parseInt(m.css('border-left-width'),10);
  
  		m.width( width || this.button.outerWidth() );
  	},
  
  	// move up or down within the menu
  	_traverse: function( which, start ){
  		var $start = $(start),
  			moveToLast = which === 38 || which === 37,
  
  			// select the first li that isn't an optgroup label / disabled
  			$next = $start.parent()[moveToLast ? 'prevAll' : 'nextAll']('li:not(.ui-multiselect-disabled, .ui-multiselect-optgroup-label)')[ moveToLast ? 'last' : 'first']();
  
  		// if at the first/last element
  		if( !$next.length ){
31b7f2792   Kload   Upgrade to ownclo...
434
  			var $container = this.menu.find('ul').last();
03e52840d   Kload   Init
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
  
  			// move to the first/last
  			this.menu.find('label')[ moveToLast ? 'last' : 'first' ]().trigger('mouseover');
  
  			// set scroll position
  			$container.scrollTop( moveToLast ? $container.height() : 0 );
  
  		} else {
  			$next.find('label').trigger('mouseover');
  		}
  	},
  
  	// This is an internal function to toggle the checked property and
  	// other related attributes of a checkbox.
  	//
  	// The context of this function should be a checkbox; do not proxy it.
31b7f2792   Kload   Upgrade to ownclo...
451
  	_toggleState: function( prop, flag ){
03e52840d   Kload   Init
452
  		return function(){
31b7f2792   Kload   Upgrade to ownclo...
453
454
455
  			if( !this.disabled ) {
  				this[ prop ] = flag;
  			}
03e52840d   Kload   Init
456
457
458
459
460
461
  
  			if( flag ){
  				this.setAttribute('aria-selected', true);
  			} else {
  				this.removeAttribute('aria-selected');
  			}
31b7f2792   Kload   Upgrade to ownclo...
462
  		};
03e52840d   Kload   Init
463
464
465
  	},
  
  	_toggleChecked: function( flag, group ){
31b7f2792   Kload   Upgrade to ownclo...
466
  		var $inputs = (group && group.length) ?  group : this.inputs,
03e52840d   Kload   Init
467
468
469
  			self = this;
  
  		// toggle state on inputs
31b7f2792   Kload   Upgrade to ownclo...
470
471
472
473
  		$inputs.each(this._toggleState('checked', flag));
  
  		// give the first input focus
  		$inputs.eq(0).focus();
03e52840d   Kload   Init
474
475
476
477
478
479
480
481
482
483
484
485
486
487
  
  		// update button text
  		this.update();
  
  		// gather an array of the values that actually changed
  		var values = $inputs.map(function(){
  			return this.value;
  		}).get();
  
  		// toggle state on original option tags
  		this.element
  			.find('option')
  			.each(function(){
  				if( !this.disabled && $.inArray(this.value, values) > -1 ){
31b7f2792   Kload   Upgrade to ownclo...
488
  					self._toggleState('selected', flag).call( this );
03e52840d   Kload   Init
489
490
491
492
493
494
495
496
497
498
499
500
  				}
  			});
  
  		// trigger the change event on the select
  		if( $inputs.length ) {
  			this.element.trigger("change");
  		}
  	},
  
  	_toggleDisabled: function( flag ){
  		this.button
  			.attr({ 'disabled':flag, 'aria-disabled':flag })[ flag ? 'addClass' : 'removeClass' ]('ui-state-disabled');
31b7f2792   Kload   Upgrade to ownclo...
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
  		var inputs = this.menu.find('input');
  		var key = "ech-multiselect-disabled";
  
  		if(flag) {
  			// remember which elements this widget disabled (not pre-disabled)
  			// elements, so that they can be restored if the widget is re-enabled.
  			inputs = inputs.filter(':enabled')
  				.data(key, true)
  		} else {
  			inputs = inputs.filter(function() {
  				return $.data(this, key) === true;
  			}).removeData(key);
  		}
  
  		inputs
  			.attr({ 'disabled':flag, 'arial-disabled':flag })
03e52840d   Kload   Init
517
518
519
520
521
522
523
524
525
526
527
528
  			.parent()[ flag ? 'addClass' : 'removeClass' ]('ui-state-disabled');
  
  		this.element
  			.attr({ 'disabled':flag, 'aria-disabled':flag });
  	},
  
  	// open the menu
  	open: function( e ){
  		var self = this,
  			button = this.button,
  			menu = this.menu,
  			speed = this.speed,
31b7f2792   Kload   Upgrade to ownclo...
529
530
  			o = this.options,
  			args = [];
03e52840d   Kload   Init
531
532
533
534
535
  
  		// bail if the multiselectopen event returns false, this widget is disabled, or is already open
  		if( this._trigger('beforeopen') === false || button.hasClass('ui-state-disabled') || this._isOpen ){
  			return;
  		}
31b7f2792   Kload   Upgrade to ownclo...
536
  		var $container = menu.find('ul').last(),
03e52840d   Kload   Init
537
  			effect = o.show,
31b7f2792   Kload   Upgrade to ownclo...
538
  			pos = button.offset();
03e52840d   Kload   Init
539
540
541
542
543
544
  
  		// figure out opening effects/speeds
  		if( $.isArray(o.show) ){
  			effect = o.show[0];
  			speed = o.show[1] || self.speed;
  		}
31b7f2792   Kload   Upgrade to ownclo...
545
546
547
548
549
  		// if there's an effect, assume jQuery UI is in use
  		// build the arguments to pass to show()
  		if( effect ) {
        args = [ effect, speed ];
  		}
03e52840d   Kload   Init
550
551
552
553
554
555
556
557
558
559
  		// set the scroll of the checkbox container
  		$container.scrollTop(0).height(o.height);
  
  		// position and show menu
  		if( $.ui.position && !$.isEmptyObject(o.position) ){
  			o.position.of = o.position.of || button;
  
  			menu
  				.show()
  				.position( o.position )
31b7f2792   Kload   Upgrade to ownclo...
560
  				.hide();
03e52840d   Kload   Init
561
562
563
564
  
  		// if position utility is not available...
  		} else {
  			menu.css({
31b7f2792   Kload   Upgrade to ownclo...
565
  				top: pos.top + button.outerHeight(),
03e52840d   Kload   Init
566
  				left: pos.left
31b7f2792   Kload   Upgrade to ownclo...
567
  			});
03e52840d   Kload   Init
568
  		}
31b7f2792   Kload   Upgrade to ownclo...
569
570
  		// show the menu, maybe with a speed/effect combo
  		$.fn.show.apply(menu, args);
03e52840d   Kload   Init
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
  		// select the first option
  		// triggering both mouseover and mouseover because 1.4.2+ has a bug where triggering mouseover
  		// will actually trigger mouseenter.  the mouseenter trigger is there for when it's eventually fixed
  		this.labels.eq(0).trigger('mouseover').trigger('mouseenter').find('input').trigger('focus');
  
  		button.addClass('ui-state-active');
  		this._isOpen = true;
  		this._trigger('open');
  	},
  
  	// close the menu
  	close: function(){
  		if(this._trigger('beforeclose') === false){
  			return;
  		}
31b7f2792   Kload   Upgrade to ownclo...
586
587
588
589
  		var o = this.options,
  		    effect = o.hide,
  		    speed = this.speed,
  		    args = [];
03e52840d   Kload   Init
590
591
592
593
594
595
  
  		// figure out opening effects/speeds
  		if( $.isArray(o.hide) ){
  			effect = o.hide[0];
  			speed = o.hide[1] || this.speed;
  		}
31b7f2792   Kload   Upgrade to ownclo...
596
597
598
599
600
      if( effect ) {
        args = [ effect, speed ];
      }
  
      $.fn.hide.apply(this.menu, args);
03e52840d   Kload   Init
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
  		this.button.removeClass('ui-state-active').trigger('blur').trigger('mouseleave');
  		this._isOpen = false;
  		this._trigger('close');
  	},
  
  	enable: function(){
  		this._toggleDisabled(false);
  	},
  
  	disable: function(){
  		this._toggleDisabled(true);
  	},
  
  	checkAll: function( e ){
  		this._toggleChecked(true);
  		this._trigger('checkAll');
  	},
  
  	uncheckAll: function(){
  		this._toggleChecked(false);
  		this._trigger('uncheckAll');
  	},
  
  	getChecked: function(){
  		return this.menu.find('input').filter(':checked');
  	},
  
  	destroy: function(){
  		// remove classes + data
  		$.Widget.prototype.destroy.call( this );
  
  		this.button.remove();
  		this.menu.remove();
  		this.element.show();
  
  		return this;
  	},
  
  	isOpen: function(){
  		return this._isOpen;
  	},
  
  	widget: function(){
  		return this.menu;
  	},
31b7f2792   Kload   Upgrade to ownclo...
646
647
648
  	getButton: function(){
  	  return this.button;
    },
03e52840d   Kload   Init
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
  	// react to option changes after initialization
  	_setOption: function( key, value ){
  		var menu = this.menu;
  
  		switch(key){
  			case 'header':
  				menu.find('div.ui-multiselect-header')[ value ? 'show' : 'hide' ]();
  				break;
  			case 'checkAllText':
  				menu.find('a.ui-multiselect-all span').eq(-1).text(value);
  				break;
  			case 'uncheckAllText':
  				menu.find('a.ui-multiselect-none span').eq(-1).text(value);
  				break;
  			case 'height':
31b7f2792   Kload   Upgrade to ownclo...
664
  				menu.find('ul').last().height( parseInt(value,10) );
03e52840d   Kload   Init
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
  				break;
  			case 'minWidth':
  				this.options[ key ] = parseInt(value,10);
  				this._setButtonWidth();
  				this._setMenuWidth();
  				break;
  			case 'selectedText':
  			case 'selectedList':
  			case 'noneSelectedText':
  				this.options[key] = value; // these all needs to update immediately for the update() call
  				this.update();
  				break;
  			case 'classes':
  				menu.add(this.button).removeClass(this.options.classes).addClass(value);
  				break;
31b7f2792   Kload   Upgrade to ownclo...
680
681
682
683
684
  			case 'multiple':
  				menu.toggleClass('ui-multiselect-single', !value);
  				this.options.multiple = value;
  				this.element[0].multiple = value;
  				this.refresh();
03e52840d   Kload   Init
685
686
687
688
689
690
691
  		}
  
  		$.Widget.prototype._setOption.apply( this, arguments );
  	}
  });
  
  })(jQuery);