From 58a11a7dec11bdfc1f43f210ffd52da3816a530c Mon Sep 17 00:00:00 2001 From: Richard Worth Date: Wed, 31 Dec 2008 05:01:58 +0000 Subject: demos: added inside
. some other minor updates

---
 demos/slider/range_vertical.html | 34 +++++++++++++++++++++++++---------
 1 file changed, 25 insertions(+), 9 deletions(-)

(limited to 'demos/slider/range_vertical.html')

diff --git a/demos/slider/range_vertical.html b/demos/slider/range_vertical.html
index 5dd634e18..3cc55544d 100644
--- a/demos/slider/range_vertical.html
+++ b/demos/slider/range_vertical.html
@@ -12,8 +12,12 @@
 		$("#slider-range").slider({
 			orientation: "vertical",
 			range: true,
-			values: [45, 67]
+			values: [17, 67],
+			slide: function(event, ui) {
+				$("#amount").val('$' + ui.values[0] + ' - $' + ui.values[1]);
+			}
 		});
+		$("#amount").val('$' + $("#slider-range").slider("values", 0) + ' - $' + $("#slider-range").slider("values", 1));
 	});
 	
 
@@ -21,22 +25,34 @@
 
 
-

Target sales goal (Millions):

+

+ + +

+
- -
-

This is an example of a vertical range slider created by setting the orientation to vertical:

-
-orientation: "vertical",
+

+This is an example of a vertical range slider created by setting the orientation to vertical: +

+ +
orientation: "vertical",
 range: true,
 values: [17, 67]
-
-

It's important to note that a vertical slider needs a height set. You can do this via .height() or by setting the height through CSS.

+
+ +

+It's important to note that a vertical slider needs a height set. +You can do this via .height() or by setting the height through CSS. +

+ +

+This demo also shows how the current slider value can be used to populate a standard form input that can also be used for user feedback. +

-- cgit v1.2.3