aboutsummaryrefslogtreecommitdiffstats
path: root/demos/progressbar/indeterminate.html
diff options
context:
space:
mode:
authorkborchers <kris.borchers@gmail.com>2012-03-26 21:51:16 -0500
committerKris Borchers <kris.borchers@gmail.com>2012-11-21 21:48:17 -0600
commitd3bc471688047d3c2dda3335dd642b724794070b (patch)
treed01bdb5123839618a79cefb670466886a869de24 /demos/progressbar/indeterminate.html
parent509259a66e28aad3f574fb77a06ceb201a271698 (diff)
downloadjquery-ui-d3bc471688047d3c2dda3335dd642b724794070b.tar.gz
jquery-ui-d3bc471688047d3c2dda3335dd642b724794070b.zip
Progressbar: Add ability to set value: false for an indeterminate progressbar. Fixes #7624 - Progressbar: Support value: false for indeterminate progressbar
Diffstat (limited to 'demos/progressbar/indeterminate.html')
-rw-r--r--demos/progressbar/indeterminate.html53
1 files changed, 53 insertions, 0 deletions
diff --git a/demos/progressbar/indeterminate.html b/demos/progressbar/indeterminate.html
new file mode 100644
index 000000000..34ce6da47
--- /dev/null
+++ b/demos/progressbar/indeterminate.html
@@ -0,0 +1,53 @@
+<!doctype html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <title>jQuery UI Progressbar - Indeterminate Value</title>
+ <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
+ <script src="../../jquery-1.8.3.js"></script>
+ <script src="../../ui/jquery.ui.core.js"></script>
+ <script src="../../ui/jquery.ui.widget.js"></script>
+ <script src="../../ui/jquery.ui.progressbar.js"></script>
+ <link rel="stylesheet" href="../demos.css">
+ <script>
+ $(function() {
+ $( "#progressbar" ).progressbar({
+ value: false
+ });
+ $( "button" ).on( "click", function( event ) {
+ var target = $( event.target ),
+ pbar = $( "#progressbar" ),
+ pbarValue = pbar.find( ".ui-progressbar-value" );
+
+ if ( target.is( "#numButton" ) ) {
+ pbar.progressbar( "option", {
+ value: Math.floor( Math.random() * 100 )
+ });
+ } else if ( target.is( "#colorButton" ) ) {
+ pbarValue.css({
+ "background": '#' + Math.floor( Math.random() * 16777215 ).toString( 16 )
+ });
+ } else if ( target.is( "#falseButton" ) ) {
+ pbar.progressbar( "option", "value", false );
+ }
+ });
+ });
+ </script>
+ <style>
+ #progressbar .ui-progressbar-value {
+ background-color: #CCCCCC;
+ }
+ </style>
+</head>
+<body>
+
+<div id="progressbar"></div>
+<button id="numButton">Random Value - Determinate</button>
+<button id="falseButton">Indeterminate</button>
+<button id="colorButton">Random Color</button>
+
+<div class="demo-description">
+<p>Indeterminate progress bar and switching between determinate and indeterminate styles.</p>
+</div>
+</body>
+</html>