mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Controlgroup: Add spinner to widgets controlgroup works with
This commit is contained in:
parent
f6879fc0f5
commit
77be50d7a6
@ -14,7 +14,7 @@
|
||||
}
|
||||
</style>
|
||||
<script src="../../external/requirejs/require.js"></script>
|
||||
<script src="../bootstrap.js" data-modules="button checkboxradio selectmenu">
|
||||
<script src="../bootstrap.js" data-modules="button checkboxradio selectmenu spinner">
|
||||
$( ".controlgroup" ).controlgroup()
|
||||
$( ".controlgroup-vertical" ).controlgroup({
|
||||
"direction": "vertical"
|
||||
@ -27,6 +27,7 @@
|
||||
<fieldset>
|
||||
<legend>Rental Car</legend>
|
||||
<div class="controlgroup">
|
||||
<input class="ui-spinner-input">
|
||||
<select>
|
||||
<option>Compact car</option>
|
||||
<option>Midsize car</option>
|
||||
@ -36,6 +37,7 @@
|
||||
<option>Truck</option>
|
||||
<option>Van</option>
|
||||
</select>
|
||||
<input class="ui-spinner-input">
|
||||
<label for="transmission-standard">Standard</label>
|
||||
<input type="radio" name="transmission" id="transmission-standard">
|
||||
<label for="transmission-automatic">Automatic</label>
|
||||
@ -43,6 +45,7 @@
|
||||
<label for="insurance">Insurance</label>
|
||||
<input type="checkbox" name="insurance" id="insurance">
|
||||
<button>Book Now!</button>
|
||||
<input class="ui-spinner-input">
|
||||
</div>
|
||||
</fieldset>
|
||||
<br/>
|
||||
|
@ -27,4 +27,10 @@
|
||||
}
|
||||
.ui-controlgroup-vertical label.ui-button {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
.ui-controlgroup .ui-spinner {
|
||||
padding-top: .225em;
|
||||
padding-bottom: .225em;
|
||||
border-color: #ccc;
|
||||
float: left;
|
||||
}
|
||||
|
@ -73,6 +73,9 @@
|
||||
vertical-align: middle;
|
||||
margin-top: -.25em;
|
||||
position: relative;
|
||||
text-indent: -99999px;
|
||||
overflow: hidden;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
.ui-widget-icon-block {
|
||||
|
@ -38,7 +38,8 @@ return $.widget( "ui.controlgroup", {
|
||||
items: {
|
||||
"button": "input[type=button], input[type=submit], input[type=reset], button, a",
|
||||
"checkboxradio": "input[type='checkbox'], input[type='radio']",
|
||||
"selectmenu": "select"
|
||||
"selectmenu": "select",
|
||||
"spinner": ".ui-spinner-input"
|
||||
},
|
||||
direction: "horizontal",
|
||||
excludeInvisible: true
|
||||
@ -83,14 +84,13 @@ return $.widget( "ui.controlgroup", {
|
||||
|
||||
// Don't set data or add to the collection if the method is destroy
|
||||
widgets.each( function() {
|
||||
var element = $( this );
|
||||
|
||||
// Set data on the widget element pointing to the this.element of the widget
|
||||
// and telling us what type of widget this is
|
||||
var widgetElement =
|
||||
$( this )[ widget ]( "widget" ).data( "ui-controlgroup-data", {
|
||||
"widgetType": widget,
|
||||
"element": $( this )
|
||||
} );
|
||||
element[ widget ]( "widget" ).data( "ui-controlgroup-data", element.data( "ui-" +
|
||||
widget.charAt(0).toUpperCase() + widget.slice(1) ) );
|
||||
|
||||
childWidgets.push( widgetElement[ 0 ] );
|
||||
} );
|
||||
@ -104,8 +104,9 @@ return $.widget( "ui.controlgroup", {
|
||||
this.childWidgets.each( function() {
|
||||
var element = $( this ),
|
||||
data = element.data( "ui-controlgroup-data" );
|
||||
|
||||
data.element[ data.widgetType ]( method );
|
||||
if( data[ method ] ) {
|
||||
data[ method ]();
|
||||
}
|
||||
} );
|
||||
},
|
||||
|
||||
@ -122,6 +123,15 @@ return $.widget( "ui.controlgroup", {
|
||||
return result;
|
||||
},
|
||||
|
||||
_spinner_options: function( position, direction ) {
|
||||
var options = this._buildSimpleOptions( position, direction, "ui-spinner" );
|
||||
|
||||
options.classes[ "ui-spinner-up" ] = "";
|
||||
options.classes[ "ui-spinner-down" ] = "";
|
||||
|
||||
return options;
|
||||
},
|
||||
|
||||
_button_options: function( position, direction ) {
|
||||
return this._buildSimpleOptions( position, direction, "ui-button" );
|
||||
},
|
||||
@ -191,11 +201,12 @@ return $.widget( "ui.controlgroup", {
|
||||
|
||||
// We do this last because we need to make sure all enhancment is done
|
||||
// before determining first and last
|
||||
[ "first", "last" ].forEach( function( value ) {
|
||||
var data = children[ value ]().data( "ui-controlgroup-data" );
|
||||
if ( that[ "_" + data.widgetType + "_options" ] ) {
|
||||
data.element[ data.widgetType ](
|
||||
that[ "_" + data.widgetType + "_options" ](
|
||||
$.each( [ "first", "last" ], function( index, value ) {
|
||||
var instance = children[ value ]().data( "ui-controlgroup-data" );
|
||||
console.log( instance )
|
||||
if ( that[ "_" + instance.widgetName + "_options" ] ) {
|
||||
instance.element[ instance.widgetName ](
|
||||
that[ "_" + instance.widgetName + "_options" ](
|
||||
value,
|
||||
that.options.direction === "vertical"
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user