forked from jquery-archive/jquery-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
whitespace and comment merge conflict resolved
- Loading branch information
Showing
33 changed files
with
1,706 additions
and
905 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>jQuery Mobile Docs - Slider events</title> | ||
<link rel="stylesheet" href="../../../themes/default/" /> | ||
<link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/> | ||
<script src="../../../js/jquery.js"></script> | ||
<script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script> | ||
<script src="../../_assets/js/jqm-docs.js"></script> | ||
<script src="../../../js/"></script> | ||
</head> | ||
<body> | ||
|
||
<div data-role="page" class="type-interior"> | ||
|
||
<div data-role="header" data-theme="f"> | ||
<h1>Sliders</h1> | ||
<a href="../../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a> | ||
</div><!-- /header --> | ||
|
||
<div data-role="content"> | ||
<div class="content-primary"> | ||
|
||
<form action="#" method="get"> | ||
|
||
<h2>Sliders</h2> | ||
|
||
<ul data-role="controlgroup" data-type="horizontal" class="localnav"> | ||
<li><a href="index.html" data-role="button" data-transition="fade">Basics</a></li> | ||
<li><a href="options.html" data-role="button" data-transition="fade">Options</a></li> | ||
<li><a href="methods.html" data-role="button" data-transition="fade">Methods</a></li> | ||
<li><a href="events.html" data-role="button" data-transition="fade" class="ui-btn-active">Events</a></li> | ||
</ul> | ||
|
||
<p>Since the input field is changed by slider, you can watch for events on the input field instead of needing to go through the slider plugin. Bind to the change event.</p> | ||
<pre><code> | ||
$( ".selector" ).bind( "change", function(event, ui) { | ||
... | ||
}); | ||
</code></pre> | ||
|
||
<p>The slider plugin has the following custom event:</p> | ||
|
||
<dl> | ||
|
||
<dt><code>create</code> triggered when a slider is created</dt> | ||
<dd> | ||
<p>This event is used to find out when a custom slider was created. It is not used to create a custom slider. The slider create event can be used like this: </p> | ||
|
||
<pre><code> | ||
$( ".selector" ).slider({ | ||
create: function(event, ui) { ... } | ||
}); | ||
</code></pre> | ||
</dd> | ||
|
||
|
||
</dl> | ||
|
||
</form> | ||
</div><!--/content-primary --> | ||
|
||
<div class="content-secondary"> | ||
|
||
<div data-role="collapsible" data-collapsed="true" data-theme="b"> | ||
|
||
<h3>More in this section</h3> | ||
|
||
<ul data-role="listview" data-theme="c" data-dividertheme="d"> | ||
|
||
<li data-role="list-divider">Form elements</li> | ||
<li><a href="../docs-forms.html">Form basics</a></li> | ||
<li><a href="../forms-all.html">Form element gallery</a></li> | ||
<li><a href="../texts/index.html">Text inputs</a></li> | ||
<li><a href="../forms-search.html">Search inputs</a></li> | ||
<li data-theme="a"><a href="index.html">Slider</a></li> | ||
<li><a href="../forms-switch.html">Flip toggle switch</a></li> | ||
<li><a href="../radiobuttons/index.html">Radio buttons</a></li> | ||
<li><a href="../checkboxes/index.html">Checkboxes</a></li> | ||
<li><a href="../selects/index.html">Select menus</a></li> | ||
<li><a href="../forms-themes.html">Theming forms</a></li> | ||
<li><a href="../forms-all-native.html">Native form elements</a></li> | ||
<li><a href="../forms-sample.html">Submitting forms</a></li> | ||
<li><a href="../plugin-eventsmethods.html">Plugin methods</a></li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
</div><!-- /content --> | ||
|
||
<div data-role="footer" class="footer-docs" data-theme="c"> | ||
<p>© 2011 The jQuery Project</p> | ||
</div> | ||
|
||
</div><!-- /page --> | ||
|
||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>jQuery Mobile Docs - Sliders</title> | ||
<link rel="stylesheet" href="../../../themes/default/" /> | ||
<link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/> | ||
<script src="../../../js/jquery.js"></script> | ||
<script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script> | ||
<script src="../../_assets/js/jqm-docs.js"></script> | ||
<script src="../../../js/"></script> | ||
</head> | ||
<body> | ||
|
||
<div data-role="page" class="type-interior"> | ||
|
||
<div data-role="header" data-theme="f"> | ||
<h1>Sliders</h1> | ||
<a href="../../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a> | ||
</div><!-- /header --> | ||
|
||
<div data-role="content"> | ||
<div class="content-primary"> | ||
|
||
<form action="#" method="get"> | ||
<h2>Sliders</h2> | ||
|
||
<ul data-role="controlgroup" data-type="horizontal" class="localnav"> | ||
<li><a href="index.html" data-role="button" data-transition="fade" class="ui-btn-active">Basics</a></li> | ||
<li><a href="options.html" data-role="button" data-transition="fade">Options</a></li> | ||
<li><a href="methods.html" data-role="button" data-transition="fade">Methods</a></li> | ||
<li><a href="events.html" data-role="button" data-transition="fade">Events</a></li> | ||
</ul> | ||
|
||
<p>To add a slider widget to your page, start with an <code>input</code> with a new HTML5 <code>type="range"</code> attribute. Specify the <code>value</code> (current value), <code>min</code> and <code>max</code> attribute values to configure the slider. The framework will parse these attributes to configure the slider. </p> | ||
<p>As you drag the slider, the input will update and vice-versa so they are always in sync so you can submit the slider value with form in a simple way. Set the <code>for</code> attribute of the <code>label</code> to match the ID of the <code>input</code> so they are semantically associated and wrap them in a <code>div</code> with the <code> data-role="fieldcontain"</code> attribute to group them.</p> | ||
|
||
<pre><code> | ||
<div data-role="fieldcontain"> | ||
<label for="slider">Input slider:</label> | ||
<input type="range" name="slider" id="slider" value="0" min="0" max="100" /> | ||
</div> | ||
</code></pre> | ||
|
||
<p>An example of a slider and input is displayed like this:</p> | ||
<div data-role="fieldcontain"> | ||
<label for="slider-1">Input slider:</label> | ||
<input type="range" name="slider-1" id="slider-1" value="0" min="0" max="100" data-theme="b" data-track-theme="a" /> | ||
</div> | ||
|
||
<p>By setting the <code>min</code> and <code>max</code>attributes you can configure the allowable number range of the slider track. The <code>value</code> of the input is used to configure the starting position of the handle and the value populated in the text input.</p> | ||
|
||
<p>The slider with a min of 500, max of 5,000 and initial value of 2,500</p> | ||
<div data-role="fieldcontain"> | ||
<label for="slider-2">Input slider:</label> | ||
<input type="range" name="slider-2" id="slider-2" value="2500" min="500" max="5000" /> | ||
</div> | ||
|
||
<p>Sliders also respond to the keyboards shortcuts. To increase the current value the Right Arrow, Up Arrow, and Page Up keys can be used. To decrease the current value the Left Arrow, Down Arrow, and Page Down keys can be used. To move the slider to its minimum or maximum value use the Home and End keys respectively.</p> | ||
|
||
|
||
<h2>Refreshing a slider</h2> | ||
|
||
<p>If you manipulate a slider via JavaScript, you must call the refresh method on it to update the visual styling. Here is an example:</p> | ||
|
||
<code> | ||
$("input[type=range]").val(60).slider("refresh"); | ||
</code> | ||
|
||
|
||
</form> | ||
</div><!--/content-primary --> | ||
|
||
<div class="content-secondary"> | ||
|
||
<div data-role="collapsible" data-collapsed="true" data-theme="b"> | ||
|
||
<h3>More in this section</h3> | ||
|
||
<ul data-role="listview" data-theme="c" data-dividertheme="d"> | ||
|
||
<li data-role="list-divider">Form elements</li> | ||
<li><a href="../docs-forms.html">Form basics</a></li> | ||
<li><a href="../forms-all.html">Form element gallery</a></li> | ||
<li><a href="../texts/index.html">Text inputs</a></li> | ||
<li><a href="../forms-search.html">Search inputs</a></li> | ||
<li data-theme="a"><a href="index.html">Slider</a></li> | ||
<li><a href="../forms-switch.html">Flip toggle switch</a></li> | ||
<li><a href="../radiobuttons/index.html">Radio buttons</a></li> | ||
<li><a href="../checkboxes/index.html">Checkboxes</a></li> | ||
<li><a href="../selects/index.html">Select menus</a></li> | ||
<li><a href="../forms-themes.html">Theming forms</a></li> | ||
<li><a href="../forms-all-native.html">Native form elements</a></li> | ||
<li><a href="../forms-sample.html">Submitting forms</a></li> | ||
<li><a href="../plugin-eventsmethods.html">Plugin methods</a></li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
</div><!-- /content --> | ||
|
||
<div data-role="footer" class="footer-docs" data-theme="c"> | ||
<p>© 2011 The jQuery Project</p> | ||
</div> | ||
|
||
</div><!-- /page --> | ||
|
||
</body> | ||
</html> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>jQuery Mobile Docs - Slider methods</title> | ||
<link rel="stylesheet" href="../../../themes/default/" /> | ||
<link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/> | ||
<script src="../../../js/jquery.js"></script> | ||
<script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script> | ||
<script src="../../_assets/js/jqm-docs.js"></script> | ||
<script src="../../../js/"></script> | ||
</head> | ||
<body> | ||
|
||
<div data-role="page" class="type-interior"> | ||
|
||
<div data-role="header" data-theme="f"> | ||
<h2>Sliders</h2> | ||
<a href="../../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a> | ||
</div><!-- /header --> | ||
|
||
<div data-role="content"> | ||
<div class="content-primary"> | ||
|
||
<form action="#" method="get"> | ||
|
||
<h2>Sliders</h2> | ||
|
||
<ul data-role="controlgroup" data-type="horizontal" class="localnav"> | ||
<li><a href="index.html" data-role="button" data-transition="fade">Basics</a></li> | ||
<li><a href="options.html" data-role="button" data-transition="fade">Options</a></li> | ||
<li><a href="methods.html" data-role="button" data-transition="fade" class="ui-btn-active">Methods</a></li> | ||
<li><a href="events.html" data-role="button" data-transition="fade">Events</a></li> | ||
</ul> | ||
|
||
<p>The slider plugin has the following methods:</p> | ||
|
||
<dl> | ||
<dt><code>enable</code> enable a disabled select</dt> | ||
<dd> | ||
<pre><code> | ||
$('select').slider('enable'); | ||
</code></pre> | ||
</dd> | ||
|
||
<dt><code>disable</code> disable a select.</dt> | ||
<dd> | ||
<pre><code> | ||
$('select').slider('disable'); | ||
</code></pre> | ||
</dd> | ||
|
||
<dt><code>refresh</code> update the slider</dt> | ||
<dd> | ||
This is used to update the slider to reflect the native input element's value. Also, if you pass a true argument you can force the rebuild to happen. | ||
<pre><code> | ||
//refresh value | ||
$('select').slider('refresh'); | ||
|
||
//refresh and force rebuild | ||
$('select').slider('refresh', true); | ||
</code></pre> | ||
</dd> | ||
|
||
</dl> | ||
|
||
</form> | ||
</div><!--/content-primary --> | ||
|
||
<div class="content-secondary"> | ||
|
||
<div data-role="collapsible" data-collapsed="true" data-theme="b"> | ||
|
||
<h3>More in this section</h3> | ||
|
||
<ul data-role="listview" data-theme="c" data-dividertheme="d"> | ||
|
||
<li data-role="list-divider">Form elements</li> | ||
<li><a href="../docs-forms.html">Form basics</a></li> | ||
<li><a href="../forms-all.html">Form element gallery</a></li> | ||
<li><a href="../texts/index.html">Text inputs</a></li> | ||
<li><a href="../forms-search.html">Search inputs</a></li> | ||
<li data-theme="a"><a href="index.html">Slider</a></li> | ||
<li><a href="../forms-switch.html">Flip toggle switch</a></li> | ||
<li><a href="../radiobuttons/index.html">Radio buttons</a></li> | ||
<li><a href="../checkboxes/index.html">Checkboxes</a></li> | ||
<li><a href="../selects/index.html">Select menus</a></li> | ||
<li><a href="../forms-themes.html">Theming forms</a></li> | ||
<li><a href="../forms-all-native.html">Native form elements</a></li> | ||
<li><a href="../forms-sample.html">Submitting forms</a></li> | ||
<li><a href="../plugin-eventsmethods.html">Plugin methods</a></li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
</div><!-- /content --> | ||
|
||
<div data-role="footer" class="footer-docs" data-theme="c"> | ||
<p>© 2011 The jQuery Project</p> | ||
</div> | ||
|
||
</div><!-- /page --> | ||
|
||
</body> | ||
</html> | ||
|
Oops, something went wrong.