_disabled: function( elem ) {
return $( elem ).hasClass( 'ui-state-disabled' );
},
-
+
_toggleOption: function( index, flag ) {
var optionElem = this._optionLis.eq( index );
if ( optionElem ) {
// true = enabled, false = disabled
_toggleOptgroup: function( index, flag ) {
var optGroupElem = this.list.find( 'li.ui-selectmenu-group-' + index );
- if ( optGroupElem ) {
+ if ( optGroupElem ) {
optGroupElem
.toggleClass( 'ui-state-disabled', flag )
.attr( "aria-disabled", !flag );