mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
196 lines
4.9 KiB
JavaScript
196 lines
4.9 KiB
JavaScript
/*
|
|
* "checkboxradio" plugin
|
|
*/
|
|
|
|
(function( $, undefined ) {
|
|
|
|
$.widget( "mobile.checkboxradio", $.mobile.widget, {
|
|
options: {
|
|
theme: null,
|
|
initSelector: "input[type='checkbox'],input[type='radio']"
|
|
},
|
|
_create: function() {
|
|
var self = this,
|
|
input = this.element,
|
|
// NOTE: Windows Phone could not find the label through a selector
|
|
// filter works though.
|
|
label = input.closest( "form,fieldset,:jqmData(role='page')" ).find( "label" ).filter( "[for='" + input[ 0 ].id + "']" ),
|
|
inputtype = input.attr( "type" ),
|
|
checkedState = inputtype + "-on",
|
|
uncheckedState = inputtype + "-off",
|
|
icon = input.parents( ":jqmData(type='horizontal')" ).length ? undefined : uncheckedState,
|
|
activeBtn = icon ? "" : " " + $.mobile.activeBtnClass,
|
|
checkedClass = "ui-" + checkedState + activeBtn,
|
|
uncheckedClass = "ui-" + uncheckedState,
|
|
checkedicon = "ui-icon-" + checkedState,
|
|
uncheckedicon = "ui-icon-" + uncheckedState;
|
|
|
|
if ( inputtype !== "checkbox" && inputtype !== "radio" ) {
|
|
return;
|
|
}
|
|
|
|
// Expose for other methods
|
|
$.extend( this, {
|
|
label: label,
|
|
inputtype: inputtype,
|
|
checkedClass: checkedClass,
|
|
uncheckedClass: uncheckedClass,
|
|
checkedicon: checkedicon,
|
|
uncheckedicon: uncheckedicon
|
|
});
|
|
|
|
// If there's no selected theme...
|
|
if( !this.options.theme ) {
|
|
this.options.theme = this.element.jqmData( "theme" );
|
|
}
|
|
|
|
label.buttonMarkup({
|
|
theme: this.options.theme,
|
|
icon: icon,
|
|
shadow: false
|
|
});
|
|
|
|
// Wrap the input + label in a div
|
|
input.add( label )
|
|
.wrapAll( "<div class='ui-" + inputtype + "'></div>" );
|
|
|
|
label.bind({
|
|
vmouseover: function( event ) {
|
|
if ( $( this ).parent().is( ".ui-disabled" ) ) {
|
|
event.stopPropagation();
|
|
}
|
|
},
|
|
|
|
vclick: function( event ) {
|
|
if ( input.is( ":disabled" ) ) {
|
|
event.preventDefault();
|
|
return;
|
|
}
|
|
|
|
self._cacheVals();
|
|
|
|
input.prop( "checked", inputtype === "radio" && true || !input.prop( "checked" ) );
|
|
|
|
// trigger click handler's bound directly to the input as a substitute for
|
|
// how label clicks behave normally in the browsers
|
|
// TODO: it would be nice to let the browser's handle the clicks and pass them
|
|
// through to the associate input. we can swallow that click at the parent
|
|
// wrapper element level
|
|
input.triggerHandler( 'click' );
|
|
|
|
// Input set for common radio buttons will contain all the radio
|
|
// buttons, but will not for checkboxes. clearing the checked status
|
|
// of other radios ensures the active button state is applied properly
|
|
self._getInputSet().not( input ).prop( "checked", false );
|
|
|
|
self._updateAll();
|
|
return false;
|
|
}
|
|
|
|
});
|
|
|
|
input
|
|
.bind({
|
|
vmousedown: function() {
|
|
self._cacheVals();
|
|
},
|
|
|
|
vclick: function() {
|
|
var $this = $(this);
|
|
|
|
// Adds checked attribute to checked input when keyboard is used
|
|
if ( $this.is( ":checked" ) ) {
|
|
|
|
$this.prop( "checked", true);
|
|
self._getInputSet().not($this).prop( "checked", false );
|
|
} else {
|
|
|
|
$this.prop( "checked", false );
|
|
}
|
|
|
|
self._updateAll();
|
|
},
|
|
|
|
focus: function() {
|
|
label.addClass( "ui-focus" );
|
|
},
|
|
|
|
blur: function() {
|
|
label.removeClass( "ui-focus" );
|
|
}
|
|
});
|
|
|
|
this.refresh();
|
|
},
|
|
|
|
_cacheVals: function() {
|
|
this._getInputSet().each(function() {
|
|
var $this = $(this);
|
|
|
|
$this.jqmData( "cacheVal", $this.is( ":checked" ) );
|
|
});
|
|
},
|
|
|
|
//returns either a set of radios with the same name attribute, or a single checkbox
|
|
_getInputSet: function(){
|
|
if(this.inputtype == "checkbox") {
|
|
return this.element;
|
|
}
|
|
|
|
return this.element.closest( "form,fieldset,:jqmData(role='page')" )
|
|
.find( "input[name='"+ this.element.attr( "name" ) +"'][type='"+ this.inputtype +"']" );
|
|
},
|
|
|
|
_updateAll: function() {
|
|
var self = this;
|
|
|
|
this._getInputSet().each(function() {
|
|
var $this = $(this);
|
|
|
|
if ( $this.is( ":checked" ) || self.inputtype === "checkbox" ) {
|
|
$this.trigger( "change" );
|
|
}
|
|
})
|
|
.checkboxradio( "refresh" );
|
|
},
|
|
|
|
refresh: function() {
|
|
var input = this.element,
|
|
label = this.label,
|
|
icon = label.find( ".ui-icon" );
|
|
|
|
// input[0].checked expando doesn't always report the proper value
|
|
// for checked='checked'
|
|
if ( $( input[ 0 ] ).prop( "checked" ) ) {
|
|
|
|
label.addClass( this.checkedClass ).removeClass( this.uncheckedClass );
|
|
icon.addClass( this.checkedicon ).removeClass( this.uncheckedicon );
|
|
|
|
} else {
|
|
|
|
label.removeClass( this.checkedClass ).addClass( this.uncheckedClass );
|
|
icon.removeClass( this.checkedicon ).addClass( this.uncheckedicon );
|
|
}
|
|
|
|
if ( input.is( ":disabled" ) ) {
|
|
this.disable();
|
|
} else {
|
|
this.enable();
|
|
}
|
|
},
|
|
|
|
disable: function() {
|
|
this.element.prop( "disabled", true ).parent().addClass( "ui-disabled" );
|
|
},
|
|
|
|
enable: function() {
|
|
this.element.prop( "disabled", false ).parent().removeClass( "ui-disabled" );
|
|
}
|
|
});
|
|
|
|
//auto self-init widgets
|
|
$( document ).bind( "pagecreate create", function( e ){
|
|
$.mobile.checkboxradio.prototype.enhanceWithin( e.target );
|
|
});
|
|
|
|
})( jQuery );
|