2012-05-16 17:26:31 +00:00
|
|
|
/*!
|
2011-09-01 22:21:09 +00:00
|
|
|
* jQuery UI Selectmenu @VERSION
|
2012-07-16 18:36:01 +00:00
|
|
|
* http://jqueryui.com
|
2011-09-01 22:21:09 +00:00
|
|
|
*
|
2014-01-29 03:25:02 +00:00
|
|
|
* Copyright 2014 jQuery Foundation and other contributors
|
2012-08-11 17:57:17 +00:00
|
|
|
* Released under the MIT license.
|
2011-09-01 22:21:09 +00:00
|
|
|
* http://jquery.org/license
|
|
|
|
*
|
2012-11-29 18:41:20 +00:00
|
|
|
* http://api.jqueryui.com/selectmenu
|
2011-09-01 22:21:09 +00:00
|
|
|
*/
|
2014-02-21 19:56:13 +00:00
|
|
|
(function( factory ) {
|
|
|
|
if ( typeof define === "function" && define.amd ) {
|
|
|
|
|
|
|
|
// AMD. Register as an anonymous module.
|
|
|
|
define([
|
|
|
|
"jquery",
|
|
|
|
"./core",
|
|
|
|
"./widget",
|
|
|
|
"./position",
|
|
|
|
"./menu"
|
|
|
|
], factory );
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// Browser globals
|
|
|
|
factory( jQuery );
|
|
|
|
}
|
|
|
|
}(function( $ ) {
|
2011-09-01 22:21:09 +00:00
|
|
|
|
2013-07-12 16:40:48 +00:00
|
|
|
return $.widget( "ui.selectmenu", {
|
2011-09-01 22:21:09 +00:00
|
|
|
version: "@VERSION",
|
|
|
|
defaultElement: "<select>",
|
|
|
|
options: {
|
2012-12-15 01:21:51 +00:00
|
|
|
appendTo: null,
|
2014-04-21 14:32:49 +00:00
|
|
|
disabled: null,
|
2012-12-19 23:10:06 +00:00
|
|
|
icons: {
|
|
|
|
button: "ui-icon-triangle-1-s"
|
|
|
|
},
|
2011-09-01 22:21:09 +00:00
|
|
|
position: {
|
|
|
|
my: "left top",
|
|
|
|
at: "left bottom",
|
|
|
|
collision: "none"
|
|
|
|
},
|
2013-10-23 22:11:10 +00:00
|
|
|
width: null,
|
2012-11-29 19:23:30 +00:00
|
|
|
|
2011-09-01 22:21:09 +00:00
|
|
|
// callbacks
|
2012-11-29 18:43:36 +00:00
|
|
|
change: null,
|
2011-09-30 19:16:55 +00:00
|
|
|
close: null,
|
2012-11-29 18:43:36 +00:00
|
|
|
focus: null,
|
|
|
|
open: null,
|
|
|
|
select: null
|
2011-09-01 22:21:09 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_create: function() {
|
2012-11-12 22:06:05 +00:00
|
|
|
var selectmenuId = this.element.uniqueId().attr( "id" );
|
2013-04-29 20:19:53 +00:00
|
|
|
this.ids = {
|
|
|
|
element: selectmenuId,
|
|
|
|
button: selectmenuId + "-button",
|
|
|
|
menu: selectmenuId + "-menu"
|
2013-04-29 19:54:36 +00:00
|
|
|
};
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-10-11 23:38:30 +00:00
|
|
|
this._drawButton();
|
|
|
|
this._drawMenu();
|
2012-01-27 22:11:31 +00:00
|
|
|
|
2012-01-22 12:38:34 +00:00
|
|
|
if ( this.options.disabled ) {
|
2012-01-11 20:20:24 +00:00
|
|
|
this.disable();
|
|
|
|
}
|
2011-09-30 19:16:55 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-10-11 23:38:30 +00:00
|
|
|
_drawButton: function() {
|
2013-10-29 20:49:17 +00:00
|
|
|
var that = this,
|
|
|
|
tabindex = this.element.attr( "tabindex" );
|
2012-10-15 21:58:31 +00:00
|
|
|
|
2013-09-16 18:45:48 +00:00
|
|
|
// Associate existing label with the new button
|
2013-04-29 19:54:36 +00:00
|
|
|
this.label = $( "label[for='" + this.ids.element + "']" ).attr( "for", this.ids.button );
|
2012-10-25 21:57:36 +00:00
|
|
|
this._on( this.label, {
|
2013-04-29 19:59:55 +00:00
|
|
|
click: function( event ) {
|
2012-10-25 21:57:36 +00:00
|
|
|
this.button.focus();
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
});
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2013-09-16 18:45:48 +00:00
|
|
|
// Hide original select element
|
2011-10-11 23:24:04 +00:00
|
|
|
this.element.hide();
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2013-04-29 20:01:51 +00:00
|
|
|
// Create button
|
2013-03-07 22:23:10 +00:00
|
|
|
this.button = $( "<span>", {
|
2013-07-09 21:03:40 +00:00
|
|
|
"class": "ui-selectmenu-button ui-widget ui-state-default ui-corner-all",
|
2013-04-29 20:04:56 +00:00
|
|
|
tabindex: tabindex || this.options.disabled ? -1 : 0,
|
2012-02-23 22:25:03 +00:00
|
|
|
id: this.ids.button,
|
2012-11-12 22:06:05 +00:00
|
|
|
role: "combobox",
|
2013-04-29 20:07:41 +00:00
|
|
|
"aria-expanded": "false",
|
2012-11-12 22:06:05 +00:00
|
|
|
"aria-autocomplete": "list",
|
|
|
|
"aria-owns": this.ids.menu,
|
2013-04-29 20:07:41 +00:00
|
|
|
"aria-haspopup": "true"
|
2013-03-07 22:53:15 +00:00
|
|
|
})
|
2014-04-08 15:17:32 +00:00
|
|
|
.insertAfter( this.element );
|
2012-02-23 22:32:17 +00:00
|
|
|
|
2013-04-29 20:14:50 +00:00
|
|
|
$( "<span>", {
|
2012-12-19 23:10:06 +00:00
|
|
|
"class": "ui-icon " + this.options.icons.button
|
2014-04-08 15:17:32 +00:00
|
|
|
})
|
|
|
|
.prependTo( this.button );
|
2012-02-23 22:32:17 +00:00
|
|
|
|
2012-11-29 19:10:05 +00:00
|
|
|
this.buttonText = $( "<span>", {
|
2013-03-07 22:53:15 +00:00
|
|
|
"class": "ui-selectmenu-text"
|
|
|
|
})
|
2014-04-08 15:17:32 +00:00
|
|
|
.appendTo( this.button );
|
2013-09-29 13:33:14 +00:00
|
|
|
|
2012-12-14 17:03:49 +00:00
|
|
|
this._setText( this.buttonText, this.element.find( "option:selected" ).text() );
|
2014-07-29 14:40:02 +00:00
|
|
|
this._resizeButton();
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2012-11-29 18:54:10 +00:00
|
|
|
this._on( this.button, this._buttonEvents );
|
2013-10-29 20:49:17 +00:00
|
|
|
this.button.one( "focusin", function() {
|
2014-04-08 15:17:32 +00:00
|
|
|
|
|
|
|
// Delay rendering the menu items until the button receives focus.
|
|
|
|
// The menu may have already been rendered via a programmatic open.
|
|
|
|
if ( !that.menuItems ) {
|
|
|
|
that._refreshMenu();
|
|
|
|
}
|
2013-10-29 20:49:17 +00:00
|
|
|
});
|
2012-11-29 18:54:10 +00:00
|
|
|
this._hoverable( this.button );
|
|
|
|
this._focusable( this.button );
|
2011-09-01 22:21:09 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-10-11 23:38:30 +00:00
|
|
|
_drawMenu: function() {
|
2013-05-30 19:25:36 +00:00
|
|
|
var that = this;
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2013-09-16 18:45:48 +00:00
|
|
|
// Create menu
|
2012-11-29 19:10:05 +00:00
|
|
|
this.menu = $( "<ul>", {
|
2013-04-29 20:07:41 +00:00
|
|
|
"aria-hidden": "true",
|
2012-11-12 22:06:05 +00:00
|
|
|
"aria-labelledby": this.ids.button,
|
2011-10-12 20:06:18 +00:00
|
|
|
id: this.ids.menu
|
2011-09-24 01:08:03 +00:00
|
|
|
});
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2013-04-29 20:01:51 +00:00
|
|
|
// Wrap menu
|
2012-11-29 19:10:05 +00:00
|
|
|
this.menuWrap = $( "<div>", {
|
2013-09-29 13:33:14 +00:00
|
|
|
"class": "ui-selectmenu-menu ui-front"
|
2013-09-16 18:45:48 +00:00
|
|
|
})
|
2014-04-08 15:17:32 +00:00
|
|
|
.append( this.menu )
|
|
|
|
.appendTo( this._appendTo() );
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2013-09-16 18:45:48 +00:00
|
|
|
// Initialize menu widget
|
2014-04-08 15:17:32 +00:00
|
|
|
this.menuInstance = this.menu
|
|
|
|
.menu({
|
|
|
|
role: "listbox",
|
|
|
|
select: function( event, ui ) {
|
|
|
|
event.preventDefault();
|
|
|
|
that._select( ui.item.data( "ui-selectmenu-item" ), event );
|
|
|
|
},
|
|
|
|
focus: function( event, ui ) {
|
|
|
|
var item = ui.item.data( "ui-selectmenu-item" );
|
|
|
|
|
|
|
|
// Prevent inital focus from firing and check if its a newly focused item
|
|
|
|
if ( that.focusIndex != null && item.index !== that.focusIndex ) {
|
|
|
|
that._trigger( "focus", event, { item: item } );
|
|
|
|
if ( !that.isOpen ) {
|
|
|
|
that._select( item, event );
|
|
|
|
}
|
2012-01-27 21:44:43 +00:00
|
|
|
}
|
2014-04-08 15:17:32 +00:00
|
|
|
that.focusIndex = item.index;
|
2012-10-15 21:58:31 +00:00
|
|
|
|
2014-04-08 15:17:32 +00:00
|
|
|
that.button.attr( "aria-activedescendant",
|
|
|
|
that.menuItems.eq( item.index ).attr( "id" ) );
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.menu( "instance" );
|
2012-01-27 22:11:31 +00:00
|
|
|
|
2013-09-16 18:45:48 +00:00
|
|
|
// Adjust menu styles to dropdown
|
2014-04-08 15:17:32 +00:00
|
|
|
this.menu
|
|
|
|
.addClass( "ui-corner-bottom" )
|
|
|
|
.removeClass( "ui-corner-all" );
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2014-04-08 15:17:32 +00:00
|
|
|
// Don't close the menu on mouseleave
|
2013-05-30 19:04:45 +00:00
|
|
|
this.menuInstance._off( this.menu, "mouseleave" );
|
2013-08-02 01:41:58 +00:00
|
|
|
|
|
|
|
// Cancel the menu's collapseAll on document click
|
|
|
|
this.menuInstance._closeOnDocumentClick = function() {
|
|
|
|
return false;
|
|
|
|
};
|
2013-12-18 18:30:48 +00:00
|
|
|
|
2014-04-08 15:17:32 +00:00
|
|
|
// Selects often contain empty items, but never contain dividers
|
2013-12-18 18:30:48 +00:00
|
|
|
this.menuInstance._isDivider = function() {
|
|
|
|
return false;
|
2013-12-18 19:11:29 +00:00
|
|
|
};
|
2011-09-30 19:16:55 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-09-30 19:16:55 +00:00
|
|
|
refresh: function() {
|
2013-09-25 23:10:16 +00:00
|
|
|
this._refreshMenu();
|
|
|
|
this._setText( this.buttonText, this._getSelectedItem().text() );
|
2014-07-29 14:40:02 +00:00
|
|
|
if ( !this.options.width ) {
|
|
|
|
this._resizeButton();
|
|
|
|
}
|
2013-09-25 23:10:16 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
_refreshMenu: function() {
|
2011-10-11 23:38:30 +00:00
|
|
|
this.menu.empty();
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2012-05-24 16:30:39 +00:00
|
|
|
var item,
|
2012-11-12 22:06:05 +00:00
|
|
|
options = this.element.find( "option" );
|
2013-04-29 21:05:07 +00:00
|
|
|
|
2013-04-29 20:23:11 +00:00
|
|
|
if ( !options.length ) {
|
|
|
|
return;
|
|
|
|
}
|
2013-04-29 21:05:07 +00:00
|
|
|
|
2014-04-08 15:17:32 +00:00
|
|
|
this._parseOptions( options );
|
2013-04-29 20:23:11 +00:00
|
|
|
this._renderMenu( this.menu, this.items );
|
2012-01-27 22:11:31 +00:00
|
|
|
|
2013-09-16 18:45:48 +00:00
|
|
|
this.menuInstance.refresh();
|
2013-10-09 23:01:41 +00:00
|
|
|
this.menuItems = this.menu.find( "li" ).not( ".ui-selectmenu-optgroup" );
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2013-04-29 20:23:11 +00:00
|
|
|
item = this._getSelectedItem();
|
2013-04-29 20:19:53 +00:00
|
|
|
|
2013-09-16 18:45:48 +00:00
|
|
|
// Update the menu to have the correct item focused
|
|
|
|
this.menuInstance.focus( null, item );
|
2013-04-29 20:23:11 +00:00
|
|
|
this._setAria( item.data( "ui-selectmenu-item" ) );
|
2013-08-31 09:50:53 +00:00
|
|
|
|
2013-04-29 20:23:11 +00:00
|
|
|
// Set disabled state
|
2013-09-16 18:45:48 +00:00
|
|
|
this._setOption( "disabled", this.element.prop( "disabled" ) );
|
2011-11-18 16:14:38 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
open: function( event ) {
|
2012-11-29 19:23:30 +00:00
|
|
|
if ( this.options.disabled ) {
|
|
|
|
return;
|
|
|
|
}
|
2013-08-02 01:41:58 +00:00
|
|
|
|
2013-09-16 18:45:48 +00:00
|
|
|
// If this is the first time the menu is being opened, render the items
|
2013-03-07 18:34:13 +00:00
|
|
|
if ( !this.menuItems ) {
|
2013-09-25 23:10:16 +00:00
|
|
|
this._refreshMenu();
|
2013-08-02 01:41:58 +00:00
|
|
|
} else {
|
2014-04-08 15:19:26 +00:00
|
|
|
|
|
|
|
// Menu clears focus on close, reset focus to selected item
|
2013-08-02 01:41:58 +00:00
|
|
|
this.menu.find( ".ui-state-focus" ).removeClass( "ui-state-focus" );
|
2013-09-16 18:45:48 +00:00
|
|
|
this.menuInstance.focus( null, this._getSelectedItem() );
|
2013-03-07 18:34:13 +00:00
|
|
|
}
|
2012-02-24 21:39:11 +00:00
|
|
|
|
2012-11-29 19:23:30 +00:00
|
|
|
this.isOpen = true;
|
|
|
|
this._toggleAttr();
|
2013-09-29 13:33:14 +00:00
|
|
|
this._resizeMenu();
|
2013-07-10 22:45:54 +00:00
|
|
|
this._position();
|
2012-11-29 19:23:30 +00:00
|
|
|
|
2013-05-15 19:04:10 +00:00
|
|
|
this._on( this.document, this._documentClick );
|
|
|
|
|
2012-11-29 19:23:30 +00:00
|
|
|
this._trigger( "open", event );
|
2011-11-18 16:14:38 +00:00
|
|
|
},
|
2013-08-02 01:41:58 +00:00
|
|
|
|
2013-07-10 22:45:54 +00:00
|
|
|
_position: function() {
|
|
|
|
this.menuWrap.position( $.extend( { of: this.button }, this.options.position ) );
|
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2012-01-27 22:06:53 +00:00
|
|
|
close: function( event ) {
|
2012-12-03 21:58:07 +00:00
|
|
|
if ( !this.isOpen ) {
|
2012-12-03 22:05:09 +00:00
|
|
|
return;
|
2011-09-22 19:20:49 +00:00
|
|
|
}
|
2012-12-09 11:36:35 +00:00
|
|
|
|
2012-11-29 19:57:44 +00:00
|
|
|
this.isOpen = false;
|
|
|
|
this._toggleAttr();
|
2012-12-13 00:12:52 +00:00
|
|
|
|
2013-05-15 19:04:10 +00:00
|
|
|
this._off( this.document );
|
|
|
|
|
2012-11-29 19:57:44 +00:00
|
|
|
this._trigger( "close", event );
|
2011-09-01 22:21:09 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-10-17 20:13:36 +00:00
|
|
|
widget: function() {
|
2012-02-21 19:22:13 +00:00
|
|
|
return this.button;
|
|
|
|
},
|
|
|
|
|
|
|
|
menuWidget: function() {
|
|
|
|
return this.menu;
|
2011-10-17 20:13:36 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-09-01 22:21:09 +00:00
|
|
|
_renderMenu: function( ul, items ) {
|
2011-09-28 21:59:23 +00:00
|
|
|
var that = this,
|
2011-09-01 22:21:09 +00:00
|
|
|
currentOptgroup = "";
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-09-01 22:21:09 +00:00
|
|
|
$.each( items, function( index, item ) {
|
2012-05-24 16:30:39 +00:00
|
|
|
if ( item.optgroup !== currentOptgroup ) {
|
2013-01-02 18:52:18 +00:00
|
|
|
$( "<li>", {
|
2013-10-09 23:01:41 +00:00
|
|
|
"class": "ui-selectmenu-optgroup ui-menu-divider" +
|
2014-04-08 15:17:32 +00:00
|
|
|
( item.element.parent( "optgroup" ).prop( "disabled" ) ?
|
2013-09-16 18:45:48 +00:00
|
|
|
" ui-state-disabled" :
|
|
|
|
"" ),
|
2012-12-03 22:07:30 +00:00
|
|
|
text: item.optgroup
|
2013-09-16 18:45:48 +00:00
|
|
|
})
|
2014-04-08 15:17:32 +00:00
|
|
|
.appendTo( ul );
|
|
|
|
|
2011-09-01 22:21:09 +00:00
|
|
|
currentOptgroup = item.optgroup;
|
|
|
|
}
|
2014-04-08 15:17:32 +00:00
|
|
|
|
2013-04-29 21:05:07 +00:00
|
|
|
that._renderItemData( ul, item );
|
2011-09-01 22:21:09 +00:00
|
|
|
});
|
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2013-04-29 21:05:07 +00:00
|
|
|
_renderItemData: function( ul, item ) {
|
|
|
|
return this._renderItem( ul, item ).data( "ui-selectmenu-item", item );
|
|
|
|
},
|
|
|
|
|
2012-10-19 22:22:12 +00:00
|
|
|
_renderItem: function( ul, item ) {
|
2013-10-09 23:01:41 +00:00
|
|
|
var li = $( "<li>" );
|
2012-12-14 17:03:49 +00:00
|
|
|
|
2011-09-28 22:11:18 +00:00
|
|
|
if ( item.disabled ) {
|
2012-11-12 22:06:05 +00:00
|
|
|
li.addClass( "ui-state-disabled" );
|
2011-11-18 16:14:38 +00:00
|
|
|
}
|
2013-10-09 23:01:41 +00:00
|
|
|
this._setText( li, item.label );
|
2012-12-14 17:03:49 +00:00
|
|
|
|
2013-10-09 23:01:41 +00:00
|
|
|
return li.appendTo( ul );
|
2012-12-14 17:03:49 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2012-12-14 17:03:49 +00:00
|
|
|
_setText: function( element, value ) {
|
|
|
|
if ( value ) {
|
|
|
|
element.text( value );
|
|
|
|
} else {
|
|
|
|
element.html( " " );
|
|
|
|
}
|
2011-09-01 22:21:09 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2012-01-27 22:11:31 +00:00
|
|
|
_move: function( direction, event ) {
|
2014-04-08 15:17:32 +00:00
|
|
|
var item, next,
|
|
|
|
filter = ".ui-menu-item";
|
2013-10-29 18:52:54 +00:00
|
|
|
|
|
|
|
if ( this.isOpen ) {
|
|
|
|
item = this.menuItems.eq( this.focusIndex );
|
|
|
|
} else {
|
|
|
|
item = this.menuItems.eq( this.element[ 0 ].selectedIndex );
|
|
|
|
filter += ":not(.ui-state-disabled)";
|
|
|
|
}
|
|
|
|
|
2012-05-16 18:41:24 +00:00
|
|
|
if ( direction === "first" || direction === "last" ) {
|
2013-10-29 18:52:54 +00:00
|
|
|
next = item[ direction === "first" ? "prevAll" : "nextAll" ]( filter ).eq( -1 );
|
2011-12-23 00:34:12 +00:00
|
|
|
} else {
|
2013-10-29 18:52:54 +00:00
|
|
|
next = item[ direction + "All" ]( filter ).eq( 0 );
|
|
|
|
}
|
2013-07-01 20:23:12 +00:00
|
|
|
|
2013-10-29 18:52:54 +00:00
|
|
|
if ( next.length ) {
|
2014-04-08 15:17:32 +00:00
|
|
|
this.menuInstance.focus( event, next );
|
2011-12-23 00:34:12 +00:00
|
|
|
}
|
2011-09-24 00:04:06 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-09-24 02:04:54 +00:00
|
|
|
_getSelectedItem: function() {
|
2013-10-09 23:01:41 +00:00
|
|
|
return this.menuItems.eq( this.element[ 0 ].selectedIndex );
|
2011-09-24 02:04:54 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-09-24 00:04:06 +00:00
|
|
|
_toggle: function( event ) {
|
2014-04-08 15:17:32 +00:00
|
|
|
this[ this.isOpen ? "close" : "open" ]( event );
|
2011-09-24 00:04:06 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2012-12-12 16:26:17 +00:00
|
|
|
_documentClick: {
|
2013-10-29 19:54:16 +00:00
|
|
|
mousedown: function( event ) {
|
2014-04-08 15:17:32 +00:00
|
|
|
if ( !this.isOpen ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !$( event.target ).closest( ".ui-selectmenu-menu, #" + this.ids.button ).length ) {
|
2012-12-12 16:26:17 +00:00
|
|
|
this.close( event );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2011-10-17 20:03:22 +00:00
|
|
|
_buttonEvents: {
|
2014-07-29 13:48:04 +00:00
|
|
|
|
|
|
|
// Prevent text selection from being reset when interacting with the selectmenu (#10144)
|
|
|
|
mousedown: function( event ) {
|
|
|
|
event.preventDefault();
|
|
|
|
},
|
|
|
|
|
2013-09-16 18:45:48 +00:00
|
|
|
click: "_toggle",
|
2014-07-29 13:48:04 +00:00
|
|
|
|
2011-09-30 19:16:55 +00:00
|
|
|
keydown: function( event ) {
|
2013-09-16 18:45:48 +00:00
|
|
|
var preventDefault = true;
|
2012-02-26 02:46:27 +00:00
|
|
|
switch ( event.keyCode ) {
|
2011-09-30 19:16:55 +00:00
|
|
|
case $.ui.keyCode.TAB:
|
2012-02-21 23:29:05 +00:00
|
|
|
case $.ui.keyCode.ESCAPE:
|
2013-09-16 18:45:48 +00:00
|
|
|
this.close( event );
|
|
|
|
preventDefault = false;
|
2011-09-30 19:16:55 +00:00
|
|
|
break;
|
|
|
|
case $.ui.keyCode.ENTER:
|
2011-11-02 18:44:45 +00:00
|
|
|
if ( this.isOpen ) {
|
2014-04-08 15:20:38 +00:00
|
|
|
this._selectFocusedItem( event );
|
2011-11-18 16:14:38 +00:00
|
|
|
}
|
2011-09-30 19:16:55 +00:00
|
|
|
break;
|
|
|
|
case $.ui.keyCode.UP:
|
|
|
|
if ( event.altKey ) {
|
|
|
|
this._toggle( event );
|
|
|
|
} else {
|
2013-10-29 18:52:54 +00:00
|
|
|
this._move( "prev", event );
|
2011-09-30 19:16:55 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case $.ui.keyCode.DOWN:
|
|
|
|
if ( event.altKey ) {
|
|
|
|
this._toggle( event );
|
|
|
|
} else {
|
2011-12-23 00:34:12 +00:00
|
|
|
this._move( "next", event );
|
2011-09-30 19:16:55 +00:00
|
|
|
}
|
|
|
|
break;
|
2013-03-07 19:10:56 +00:00
|
|
|
case $.ui.keyCode.SPACE:
|
|
|
|
if ( this.isOpen ) {
|
2014-04-08 15:20:38 +00:00
|
|
|
this._selectFocusedItem( event );
|
2013-03-07 22:23:10 +00:00
|
|
|
} else {
|
|
|
|
this._toggle( event );
|
2013-03-07 19:10:56 +00:00
|
|
|
}
|
|
|
|
break;
|
2011-09-30 19:16:55 +00:00
|
|
|
case $.ui.keyCode.LEFT:
|
2013-10-29 18:52:54 +00:00
|
|
|
this._move( "prev", event );
|
2011-09-30 19:16:55 +00:00
|
|
|
break;
|
|
|
|
case $.ui.keyCode.RIGHT:
|
2011-12-23 00:34:12 +00:00
|
|
|
this._move( "next", event );
|
2012-01-27 22:11:31 +00:00
|
|
|
break;
|
|
|
|
case $.ui.keyCode.HOME:
|
2011-12-22 00:51:16 +00:00
|
|
|
case $.ui.keyCode.PAGE_UP:
|
2011-12-23 00:34:12 +00:00
|
|
|
this._move( "first", event );
|
2011-12-22 00:51:16 +00:00
|
|
|
break;
|
|
|
|
case $.ui.keyCode.END:
|
|
|
|
case $.ui.keyCode.PAGE_DOWN:
|
2011-12-23 00:34:12 +00:00
|
|
|
this._move( "last", event );
|
2011-09-30 19:16:55 +00:00
|
|
|
break;
|
|
|
|
default:
|
2011-10-11 23:38:30 +00:00
|
|
|
this.menu.trigger( event );
|
2013-09-16 18:45:48 +00:00
|
|
|
preventDefault = false;
|
2011-12-22 00:51:16 +00:00
|
|
|
}
|
2013-09-16 18:45:48 +00:00
|
|
|
|
|
|
|
if ( preventDefault ) {
|
2011-12-22 00:51:16 +00:00
|
|
|
event.preventDefault();
|
2011-09-30 19:16:55 +00:00
|
|
|
}
|
|
|
|
}
|
2011-11-18 16:14:38 +00:00
|
|
|
},
|
2012-01-27 22:11:31 +00:00
|
|
|
|
2014-04-08 15:20:38 +00:00
|
|
|
_selectFocusedItem: function( event ) {
|
|
|
|
var item = this.menuItems.eq( this.focusIndex );
|
|
|
|
if ( !item.hasClass( "ui-state-disabled" ) ) {
|
|
|
|
this._select( item.data( "ui-selectmenu-item" ), event );
|
2013-10-29 18:52:54 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2012-01-27 22:11:31 +00:00
|
|
|
_select: function( item, event ) {
|
2012-02-26 02:46:27 +00:00
|
|
|
var oldIndex = this.element[ 0 ].selectedIndex;
|
2013-09-16 18:45:48 +00:00
|
|
|
|
2013-04-29 20:01:51 +00:00
|
|
|
// Change native select element
|
2012-02-26 02:46:27 +00:00
|
|
|
this.element[ 0 ].selectedIndex = item.index;
|
2013-02-08 21:05:26 +00:00
|
|
|
this._setText( this.buttonText, item.label );
|
2013-02-09 02:24:50 +00:00
|
|
|
this._setAria( item );
|
2012-01-26 22:10:35 +00:00
|
|
|
this._trigger( "select", event, { item: item } );
|
|
|
|
|
2012-05-16 18:41:24 +00:00
|
|
|
if ( item.index !== oldIndex ) {
|
2012-01-26 22:10:35 +00:00
|
|
|
this._trigger( "change", event, { item: item } );
|
|
|
|
}
|
2013-09-16 18:45:48 +00:00
|
|
|
|
|
|
|
this.close( event );
|
2012-01-26 22:10:35 +00:00
|
|
|
},
|
2012-01-27 22:11:31 +00:00
|
|
|
|
2013-02-09 02:24:50 +00:00
|
|
|
_setAria: function( item ) {
|
2013-10-09 23:01:41 +00:00
|
|
|
var id = this.menuItems.eq( item.index ).attr( "id" );
|
2013-03-01 16:18:03 +00:00
|
|
|
|
2013-02-13 22:07:25 +00:00
|
|
|
this.button.attr({
|
|
|
|
"aria-labelledby": id,
|
|
|
|
"aria-activedescendant": id
|
|
|
|
});
|
|
|
|
this.menu.attr( "aria-activedescendant", id );
|
2012-01-12 21:01:49 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-09-01 22:21:09 +00:00
|
|
|
_setOption: function( key, value ) {
|
2012-12-19 23:16:37 +00:00
|
|
|
if ( key === "icons" ) {
|
|
|
|
this.button.find( "span.ui-icon" )
|
|
|
|
.removeClass( this.options.icons.button )
|
|
|
|
.addClass( value.button );
|
|
|
|
}
|
|
|
|
|
2011-11-18 16:15:01 +00:00
|
|
|
this._super( key, value );
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-09-01 22:21:09 +00:00
|
|
|
if ( key === "appendTo" ) {
|
2012-12-15 01:21:51 +00:00
|
|
|
this.menuWrap.appendTo( this._appendTo() );
|
2011-09-01 22:21:09 +00:00
|
|
|
}
|
2014-04-08 15:17:32 +00:00
|
|
|
|
2011-09-24 03:29:05 +00:00
|
|
|
if ( key === "disabled" ) {
|
2013-09-16 18:45:48 +00:00
|
|
|
this.menuInstance.option( "disabled", value );
|
2013-03-19 19:16:22 +00:00
|
|
|
this.button
|
2013-09-16 18:45:48 +00:00
|
|
|
.toggleClass( "ui-state-disabled", value )
|
2013-03-19 19:16:22 +00:00
|
|
|
.attr( "aria-disabled", value );
|
|
|
|
|
2013-09-16 18:45:48 +00:00
|
|
|
this.element.prop( "disabled", value );
|
2011-09-27 19:46:29 +00:00
|
|
|
if ( value ) {
|
2011-10-11 23:38:30 +00:00
|
|
|
this.button.attr( "tabindex", -1 );
|
2011-10-17 20:04:54 +00:00
|
|
|
this.close();
|
2011-09-27 19:46:29 +00:00
|
|
|
} else {
|
2011-10-12 00:10:31 +00:00
|
|
|
this.button.attr( "tabindex", 0 );
|
2011-09-27 19:46:29 +00:00
|
|
|
}
|
2011-09-24 03:29:05 +00:00
|
|
|
}
|
2014-04-08 15:17:32 +00:00
|
|
|
|
2013-10-23 22:11:10 +00:00
|
|
|
if ( key === "width" ) {
|
2014-07-29 14:40:02 +00:00
|
|
|
this._resizeButton();
|
2013-09-29 13:33:14 +00:00
|
|
|
}
|
2011-09-01 22:21:09 +00:00
|
|
|
},
|
2012-01-27 22:11:31 +00:00
|
|
|
|
2012-12-15 01:21:51 +00:00
|
|
|
_appendTo: function() {
|
|
|
|
var element = this.options.appendTo;
|
|
|
|
|
|
|
|
if ( element ) {
|
|
|
|
element = element.jquery || element.nodeType ?
|
|
|
|
$( element ) :
|
|
|
|
this.document.find( element ).eq( 0 );
|
|
|
|
}
|
|
|
|
|
2014-02-21 12:35:34 +00:00
|
|
|
if ( !element || !element[ 0 ] ) {
|
2012-12-15 01:21:51 +00:00
|
|
|
element = this.element.closest( ".ui-front" );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !element.length ) {
|
2013-04-29 20:36:37 +00:00
|
|
|
element = this.document[ 0 ].body;
|
2012-12-15 01:21:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return element;
|
|
|
|
},
|
|
|
|
|
2013-11-13 20:26:48 +00:00
|
|
|
_toggleAttr: function() {
|
2013-09-16 18:45:48 +00:00
|
|
|
this.button
|
|
|
|
.toggleClass( "ui-corner-top", this.isOpen )
|
2014-04-08 15:17:32 +00:00
|
|
|
.toggleClass( "ui-corner-all", !this.isOpen )
|
|
|
|
.attr( "aria-expanded", this.isOpen );
|
2012-11-12 22:06:05 +00:00
|
|
|
this.menuWrap.toggleClass( "ui-selectmenu-open", this.isOpen );
|
2013-09-16 18:45:48 +00:00
|
|
|
this.menu.attr( "aria-hidden", !this.isOpen );
|
2012-01-20 00:30:16 +00:00
|
|
|
},
|
2012-02-26 00:50:55 +00:00
|
|
|
|
2014-07-29 14:40:02 +00:00
|
|
|
_resizeButton: function() {
|
|
|
|
var width = this.options.width;
|
|
|
|
|
|
|
|
if ( !width ) {
|
|
|
|
width = this.element.show().outerWidth();
|
|
|
|
this.element.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
this.button.outerWidth( width );
|
|
|
|
},
|
|
|
|
|
2013-09-29 13:33:14 +00:00
|
|
|
_resizeMenu: function() {
|
2013-10-23 22:11:10 +00:00
|
|
|
this.menu.outerWidth( Math.max(
|
2013-09-29 13:33:14 +00:00
|
|
|
this.button.outerWidth(),
|
2014-04-08 15:17:32 +00:00
|
|
|
|
|
|
|
// support: IE10
|
2013-11-25 23:56:50 +00:00
|
|
|
// IE10 wraps long text (possibly a rounding bug)
|
|
|
|
// so we add 1px to avoid the wrapping
|
|
|
|
this.menu.width( "" ).outerWidth() + 1
|
2013-09-29 13:33:14 +00:00
|
|
|
) );
|
|
|
|
},
|
|
|
|
|
2012-01-22 12:38:34 +00:00
|
|
|
_getCreateOptions: function() {
|
2013-09-16 18:45:48 +00:00
|
|
|
return { disabled: this.element.prop( "disabled" ) };
|
2012-01-22 12:38:34 +00:00
|
|
|
},
|
2011-09-30 19:51:37 +00:00
|
|
|
|
2014-04-08 15:17:32 +00:00
|
|
|
_parseOptions: function( options ) {
|
2011-11-18 16:14:38 +00:00
|
|
|
var data = [];
|
2014-04-08 15:17:32 +00:00
|
|
|
options.each(function( index, item ) {
|
2011-09-30 19:16:55 +00:00
|
|
|
var option = $( item ),
|
|
|
|
optgroup = option.parent( "optgroup" );
|
|
|
|
data.push({
|
|
|
|
element: option,
|
|
|
|
index: index,
|
2012-11-12 22:06:05 +00:00
|
|
|
value: option.attr( "value" ),
|
2012-12-14 17:03:49 +00:00
|
|
|
label: option.text(),
|
2012-05-24 16:30:39 +00:00
|
|
|
optgroup: optgroup.attr( "label" ) || "",
|
2014-04-08 15:17:32 +00:00
|
|
|
disabled: optgroup.prop( "disabled" ) || option.prop( "disabled" )
|
2011-09-24 02:44:13 +00:00
|
|
|
});
|
2011-09-30 19:16:55 +00:00
|
|
|
});
|
|
|
|
this.items = data;
|
2011-09-01 22:21:09 +00:00
|
|
|
},
|
2011-11-18 16:14:38 +00:00
|
|
|
|
2011-09-24 00:04:06 +00:00
|
|
|
_destroy: function() {
|
2011-10-11 23:38:30 +00:00
|
|
|
this.menuWrap.remove();
|
2013-03-07 22:53:15 +00:00
|
|
|
this.button.remove();
|
2011-10-10 18:08:47 +00:00
|
|
|
this.element.show();
|
2012-10-25 18:55:48 +00:00
|
|
|
this.element.removeUniqueId();
|
2013-04-29 19:54:36 +00:00
|
|
|
this.label.attr( "for", this.ids.element );
|
2011-09-22 22:17:24 +00:00
|
|
|
}
|
2011-09-01 22:21:09 +00:00
|
|
|
});
|
|
|
|
|
2014-02-21 19:56:13 +00:00
|
|
|
}));
|