2 Copyright (c) 2009, Yahoo! Inc. All rights reserved.
3 Code licensed under the BSD License:
4 http://developer.yahoo.net/yui/license.txt
8 * The Slider component is a UI control that enables the user to adjust
9 * values in a finite range along one or two axes. Typically, the Slider
10 * control is used in a web application as a rich, visual replacement
11 * for an input box that takes a number as input. The Slider control can
12 * also easily accommodate a second dimension, providing x,y output for
13 * a selection point chosen from a rectangular region.
16 * @title Slider Widget
17 * @namespace YAHOO.widget
18 * @requires yahoo,dom,dragdrop,event
23 var getXY = YAHOO.util.Dom.getXY,
24 Event = YAHOO.util.Event,
25 _AS = Array.prototype.slice;
28 * A DragDrop implementation that can be used as a background for a
29 * slider. It takes a reference to the thumb instance
30 * so it can delegate some of the events to it. The goal is to make the
31 * thumb jump to the location on the background when the background is
35 * @extends YAHOO.util.DragDrop
36 * @uses YAHOO.util.EventProvider
38 * @param {String} id The id of the element linked to this instance
39 * @param {String} sGroup The group of related DragDrop items
40 * @param {SliderThumb} oThumb The thumb for this slider
41 * @param {String} sType The type of slider (horiz, vert, region)
43 function Slider(sElementId, sGroup, oThumb, sType) {
45 Slider.ANIM_AVAIL = (!YAHOO.lang.isUndefined(YAHOO.util.Anim));
48 this.init(sElementId, sGroup, true);
49 this.initSlider(sType);
50 this.initThumb(oThumb);
54 YAHOO.lang.augmentObject(Slider,{
56 * Factory method for creating a horizontal slider
57 * @method YAHOO.widget.Slider.getHorizSlider
59 * @param {String} sBGElId the id of the slider's background element
60 * @param {String} sHandleElId the id of the thumb element
61 * @param {int} iLeft the number of pixels the element can move left
62 * @param {int} iRight the number of pixels the element can move right
63 * @param {int} iTickSize optional parameter for specifying that the element
64 * should move a certain number pixels at a time.
65 * @return {Slider} a horizontal slider control
68 function (sBGElId, sHandleElId, iLeft, iRight, iTickSize) {
69 return new Slider(sBGElId, sBGElId,
70 new YAHOO.widget.SliderThumb(sHandleElId, sBGElId,
71 iLeft, iRight, 0, 0, iTickSize), "horiz");
75 * Factory method for creating a vertical slider
76 * @method YAHOO.widget.Slider.getVertSlider
78 * @param {String} sBGElId the id of the slider's background element
79 * @param {String} sHandleElId the id of the thumb element
80 * @param {int} iUp the number of pixels the element can move up
81 * @param {int} iDown the number of pixels the element can move down
82 * @param {int} iTickSize optional parameter for specifying that the element
83 * should move a certain number pixels at a time.
84 * @return {Slider} a vertical slider control
87 function (sBGElId, sHandleElId, iUp, iDown, iTickSize) {
88 return new Slider(sBGElId, sBGElId,
89 new YAHOO.widget.SliderThumb(sHandleElId, sBGElId, 0, 0,
90 iUp, iDown, iTickSize), "vert");
94 * Factory method for creating a slider region like the one in the color
96 * @method YAHOO.widget.Slider.getSliderRegion
98 * @param {String} sBGElId the id of the slider's background element
99 * @param {String} sHandleElId the id of the thumb element
100 * @param {int} iLeft the number of pixels the element can move left
101 * @param {int} iRight the number of pixels the element can move right
102 * @param {int} iUp the number of pixels the element can move up
103 * @param {int} iDown the number of pixels the element can move down
104 * @param {int} iTickSize optional parameter for specifying that the element
105 * should move a certain number pixels at a time.
106 * @return {Slider} a slider region control
109 function (sBGElId, sHandleElId, iLeft, iRight, iUp, iDown, iTickSize) {
110 return new Slider(sBGElId, sBGElId,
111 new YAHOO.widget.SliderThumb(sHandleElId, sBGElId, iLeft, iRight,
112 iUp, iDown, iTickSize), "region");
116 * Constant for valueChangeSource, indicating that the user clicked or
117 * dragged the slider to change the value.
118 * @property Slider.SOURCE_UI_EVENT
126 * Constant for valueChangeSource, indicating that the value was altered
127 * by a programmatic call to setValue/setRegionValue.
128 * @property Slider.SOURCE_SET_VALUE
133 SOURCE_SET_VALUE : 2,
136 * Constant for valueChangeSource, indicating that the value was altered
137 * by hitting any of the supported keyboard characters.
138 * @property Slider.SOURCE_KEY_EVENT
143 SOURCE_KEY_EVENT : 3,
146 * By default, animation is available if the animation utility is detected.
147 * @property Slider.ANIM_AVAIL
154 YAHOO.extend(Slider, YAHOO.util.DragDrop, {
157 * Tracks the state of the mouse button to aid in when events are fired.
159 * @property _mouseDown
167 * Override the default setting of dragOnly to true.
175 * Initializes the slider. Executed in the constructor
177 * @param {string} sType the type of slider (horiz, vert, region)
179 initSlider: function(sType) {
182 * The type of the slider (horiz, vert, region)
188 //this.removeInvalidHandleType("A");
192 * Event the fires when the value of the control changes. If
193 * the control is animated the event will fire every point
196 * @param {int} newOffset|x the new offset for normal sliders, or the new
197 * x offset for region sliders
198 * @param {int} y the number of pixels the thumb has moved on the y axis
199 * (region sliders only)
201 this.createEvent("change", this);
204 * Event that fires at the beginning of a slider thumb move.
207 this.createEvent("slideStart", this);
210 * Event that fires at the end of a slider thumb move
213 this.createEvent("slideEnd", this);
216 * Overrides the isTarget property in YAHOO.util.DragDrop
220 this.isTarget = false;
223 * Flag that determines if the thumb will animate when moved
227 this.animate = Slider.ANIM_AVAIL;
230 * Set to false to disable a background click thumb move
231 * @property backgroundEnabled
234 this.backgroundEnabled = true;
237 * Adjustment factor for tick animation, the more ticks, the
238 * faster the animation (by default)
239 * @property tickPause
245 * Enables the arrow, home and end keys, defaults to true.
246 * @property enableKeys
249 this.enableKeys = true;
252 * Specifies the number of pixels the arrow keys will move the slider.
254 * @property keyIncrement
257 this.keyIncrement = 20;
260 * moveComplete is set to true when the slider has moved to its final
261 * destination. For animated slider, this value can be checked in
262 * the onChange handler to make it possible to execute logic only
263 * when the move is complete rather than at all points along the way.
264 * Deprecated because this flag is only useful when the background is
265 * clicked and the slider is animated. If the user drags the thumb,
266 * the flag is updated when the drag is over ... the final onDrag event
267 * fires before the mouseup the ends the drag, so the implementer will
270 * @property moveComplete
272 * @deprecated use the slideEnd event instead
274 this.moveComplete = true;
277 * If animation is configured, specifies the length of the animation
279 * @property animationDuration
283 this.animationDuration = 0.2;
286 * Constant for valueChangeSource, indicating that the user clicked or
287 * dragged the slider to change the value.
288 * @property SOURCE_UI_EVENT
291 * @deprecated use static Slider.SOURCE_UI_EVENT
293 this.SOURCE_UI_EVENT = 1;
296 * Constant for valueChangeSource, indicating that the value was altered
297 * by a programmatic call to setValue/setRegionValue.
298 * @property SOURCE_SET_VALUE
301 * @deprecated use static Slider.SOURCE_SET_VALUE
303 this.SOURCE_SET_VALUE = 2;
306 * When the slider value changes, this property is set to identify where
307 * the update came from. This will be either 1, meaning the slider was
308 * clicked or dragged, or 2, meaning that it was set via a setValue() call.
309 * This can be used within event handlers to apply some of the logic only
310 * when dealing with one source or another.
311 * @property valueChangeSource
315 this.valueChangeSource = 0;
318 * Indicates whether or not events will be supressed for the current
324 this._silent = false;
327 * Saved offset used to protect against NaN problems when slider is
328 * set to display:none
329 * @property lastOffset
332 this.lastOffset = [0,0];
336 * Initializes the slider's thumb. Executed in the constructor.
338 * @param {YAHOO.widget.SliderThumb} t the slider thumb
340 initThumb: function(t) {
345 * A YAHOO.widget.SliderThumb instance that we will use to
346 * reposition the thumb when the background is clicked
348 * @type YAHOO.widget.SliderThumb
352 t.cacheBetweenDrags = true;
354 if (t._isHoriz && t.xTicks && t.xTicks.length) {
355 this.tickPause = Math.round(360 / t.xTicks.length);
356 } else if (t.yTicks && t.yTicks.length) {
357 this.tickPause = Math.round(360 / t.yTicks.length);
361 // delegate thumb methods
362 t.onAvailable = function() {
363 return self.setStartSliderState();
365 t.onMouseDown = function () {
366 self._mouseDown = true;
369 t.startDrag = function() {
372 t.onDrag = function() {
373 self.fireEvents(true);
375 t.onMouseUp = function() {
382 * Executed when the slider element is available
383 * @method onAvailable
385 onAvailable: function() {
386 this._bindKeyEvents();
390 * Sets up the listeners for keydown and key press events.
392 * @method _bindKeyEvents
395 _bindKeyEvents : function () {
396 Event.on(this.id, "keydown", this.handleKeyDown, this, true);
397 Event.on(this.id, "keypress", this.handleKeyPress, this, true);
401 * Executed when a keypress event happens with the control focused.
402 * Prevents the default behavior for navigation keys. The actual
403 * logic for moving the slider thumb in response to a key event
404 * happens in handleKeyDown.
405 * @param {Event} e the keypress event
407 handleKeyPress: function(e) {
408 if (this.enableKeys) {
409 var kc = Event.getCharCode(e);
418 Event.preventDefault(e);
426 * Executed when a keydown event happens with the control focused.
427 * Updates the slider value and display when the keypress is an
428 * arrow key, home, or end as long as enableKeys is set to true.
429 * @param {Event} e the keydown event
431 handleKeyDown: function(e) {
432 if (this.enableKeys) {
433 var kc = Event.getCharCode(e),
435 h = this.getXValue(),
436 v = this.getYValue(),
442 case 0x25: h -= this.keyIncrement; break;
445 case 0x26: v -= this.keyIncrement; break;
448 case 0x27: h += this.keyIncrement; break;
451 case 0x28: v += this.keyIncrement; break;
454 case 0x24: h = t.leftConstraint;
459 case 0x23: h = t.rightConstraint;
460 v = t.bottomConstraint;
463 default: changeValue = false;
468 this._setRegionValue(Slider.SOURCE_KEY_EVENT, h, v, true);
470 this._setValue(Slider.SOURCE_KEY_EVENT,
471 (t._isHoriz ? h : v), true);
480 * Initialization that sets up the value offsets once the elements are ready
481 * @method setStartSliderState
483 setStartSliderState: function() {
486 this.setThumbCenterPoint();
489 * The basline position of the background element, used
490 * to determine if the background has moved since the last
492 * @property baselinePos
495 this.baselinePos = getXY(this.getEl());
497 this.thumb.startOffset = this.thumb.getOffsetFromParent(this.baselinePos);
499 if (this.thumb._isRegion) {
500 if (this.deferredSetRegionValue) {
501 this._setRegionValue.apply(this, this.deferredSetRegionValue);
502 this.deferredSetRegionValue = null;
504 this.setRegionValue(0, 0, true, true, true);
507 if (this.deferredSetValue) {
508 this._setValue.apply(this, this.deferredSetValue);
509 this.deferredSetValue = null;
511 this.setValue(0, true, true, true);
517 * When the thumb is available, we cache the centerpoint of the element so
518 * we can position the element correctly when the background is clicked
519 * @method setThumbCenterPoint
521 setThumbCenterPoint: function() {
523 var el = this.thumb.getEl();
527 * The center of the slider element is stored so we can
528 * place it in the correct position when the background is clicked.
529 * @property thumbCenterPoint
530 * @type {"x": int, "y": int}
532 this.thumbCenterPoint = {
533 x: parseInt(el.offsetWidth/2, 10),
534 y: parseInt(el.offsetHeight/2, 10)
541 * Locks the slider, overrides YAHOO.util.DragDrop
550 * Unlocks the slider, overrides YAHOO.util.DragDrop
559 * Handles mouseup event on the thumb
560 * @method thumbMouseUp
563 thumbMouseUp: function() {
564 this._mouseDown = false;
565 if (!this.isLocked() && !this.moveComplete) {
571 onMouseUp: function() {
572 this._mouseDown = false;
573 if (this.backgroundEnabled && !this.isLocked() && !this.moveComplete) {
579 * Returns a reference to this slider's thumb
581 * @return {SliderThumb} this slider's thumb
583 getThumb: function() {
588 * Try to focus the element when clicked so we can add
589 * accessibility features
594 this.valueChangeSource = Slider.SOURCE_UI_EVENT;
596 // Focus the background element if possible
597 var el = this.getEl();
603 // Prevent permission denied unhandled exception in FF that can
604 // happen when setting focus while another element is handling
605 // the blur. @TODO this is still writing to the error log
606 // (unhandled error) in FF1.5 with strict error checking on.
612 return !this.isLocked();
616 * Event that fires when the value of the slider has changed
618 * @param {int} firstOffset the number of pixels the thumb has moved
619 * from its start position. Normal horizontal and vertical sliders will only
620 * have the firstOffset. Regions will have both, the first is the horizontal
621 * offset, the second the vertical.
622 * @param {int} secondOffset the y offset for region sliders
623 * @deprecated use instance.subscribe("change") instead
625 onChange: function (firstOffset, secondOffset) {
630 * Event that fires when the at the beginning of the slider thumb move
631 * @method onSlideStart
632 * @deprecated use instance.subscribe("slideStart") instead
634 onSlideStart: function () {
639 * Event that fires at the end of a slider thumb move
640 * @method onSliderEnd
641 * @deprecated use instance.subscribe("slideEnd") instead
643 onSlideEnd: function () {
648 * Returns the slider's thumb offset from the start position
650 * @return {int} the current value
652 getValue: function () {
653 return this.thumb.getValue();
657 * Returns the slider's thumb X offset from the start position
659 * @return {int} the current horizontal offset
661 getXValue: function () {
662 return this.thumb.getXValue();
666 * Returns the slider's thumb Y offset from the start position
668 * @return {int} the current vertical offset
670 getYValue: function () {
671 return this.thumb.getYValue();
675 * Provides a way to set the value of the slider in code.
678 * @param {int} newOffset the number of pixels the thumb should be
679 * positioned away from the initial start point
680 * @param {boolean} skipAnim set to true to disable the animation
681 * for this move action (but not others).
682 * @param {boolean} force ignore the locked setting and set value anyway
683 * @param {boolean} silent when true, do not fire events
684 * @return {boolean} true if the move was performed, false if it failed
686 setValue: function() {
687 var args = _AS.call(arguments);
688 args.unshift(Slider.SOURCE_SET_VALUE);
689 return this._setValue.apply(this,args);
693 * Worker function to execute the value set operation. Accepts type of
694 * set operation in addition to the usual setValue params.
697 * @param source {int} what triggered the set (e.g. Slider.SOURCE_SET_VALUE)
698 * @param {int} newOffset the number of pixels the thumb should be
699 * positioned away from the initial start point
700 * @param {boolean} skipAnim set to true to disable the animation
701 * for this move action (but not others).
702 * @param {boolean} force ignore the locked setting and set value anyway
703 * @param {boolean} silent when true, do not fire events
704 * @return {boolean} true if the move was performed, false if it failed
707 _setValue: function(source, newOffset, skipAnim, force, silent) {
708 var t = this.thumb, newX, newY;
711 this.deferredSetValue = arguments;
715 if (this.isLocked() && !force) {
719 if ( isNaN(newOffset) ) {
728 this._silent = silent;
729 this.valueChangeSource = source || Slider.SOURCE_SET_VALUE;
731 t.lastOffset = [newOffset, newOffset];
732 this.verifyOffset(true);
737 newX = t.initPageX + newOffset + this.thumbCenterPoint.x;
738 this.moveThumb(newX, t.initPageY, skipAnim);
740 newY = t.initPageY + newOffset + this.thumbCenterPoint.y;
741 this.moveThumb(t.initPageX, newY, skipAnim);
748 * Provides a way to set the value of the region slider in code.
749 * @method setRegionValue
750 * @param {int} newOffset the number of pixels the thumb should be
751 * positioned away from the initial start point (x axis for region)
752 * @param {int} newOffset2 the number of pixels the thumb should be
753 * positioned away from the initial start point (y axis for region)
754 * @param {boolean} skipAnim set to true to disable the animation
755 * for this move action (but not others).
756 * @param {boolean} force ignore the locked setting and set value anyway
757 * @param {boolean} silent when true, do not fire events
758 * @return {boolean} true if the move was performed, false if it failed
760 setRegionValue : function () {
761 var args = _AS.call(arguments);
762 args.unshift(Slider.SOURCE_SET_VALUE);
763 return this._setRegionValue.apply(this,args);
767 * Worker function to execute the value set operation. Accepts type of
768 * set operation in addition to the usual setValue params.
770 * @method _setRegionValue
771 * @param source {int} what triggered the set (e.g. Slider.SOURCE_SET_VALUE)
772 * @param {int} newOffset the number of pixels the thumb should be
773 * positioned away from the initial start point (x axis for region)
774 * @param {int} newOffset2 the number of pixels the thumb should be
775 * positioned away from the initial start point (y axis for region)
776 * @param {boolean} skipAnim set to true to disable the animation
777 * for this move action (but not others).
778 * @param {boolean} force ignore the locked setting and set value anyway
779 * @param {boolean} silent when true, do not fire events
780 * @return {boolean} true if the move was performed, false if it failed
783 _setRegionValue: function(source, newOffset, newOffset2, skipAnim, force, silent) {
784 var t = this.thumb, newX, newY;
787 this.deferredSetRegionValue = arguments;
791 if (this.isLocked() && !force) {
795 if ( isNaN(newOffset) ) {
803 this._silent = silent;
805 this.valueChangeSource = source || Slider.SOURCE_SET_VALUE;
807 t.lastOffset = [newOffset, newOffset2];
808 this.verifyOffset(true);
812 newX = t.initPageX + newOffset + this.thumbCenterPoint.x;
813 newY = t.initPageY + newOffset2 + this.thumbCenterPoint.y;
814 this.moveThumb(newX, newY, skipAnim);
820 * Checks the background position element position. If it has moved from the
821 * baseline position, the constraints for the thumb are reset
822 * @param checkPos {boolean} check the position instead of using cached value
823 * @method verifyOffset
824 * @return {boolean} True if the offset is the same as the baseline.
826 verifyOffset: function(checkPos) {
828 var xy = getXY(this.getEl()),
831 if (!this.thumbCenterPoint || !this.thumbCenterPoint.x) {
832 this.setThumbCenterPoint();
838 if (xy[0] != this.baselinePos[0] || xy[1] != this.baselinePos[1]) {
841 this.setInitPosition();
842 this.baselinePos = xy;
845 t.initPageX = this.initPageX + t.startOffset[0];
846 t.initPageY = this.initPageY + t.startOffset[1];
848 this.resetThumbConstraints();
858 * Move the associated slider moved to a timeout to try to get around the
859 * mousedown stealing moz does when I move the slider element between the
860 * cursor and the background during the mouseup event
862 * @param {int} x the X coordinate of the click
863 * @param {int} y the Y coordinate of the click
864 * @param {boolean} skipAnim don't animate if the move happend onDrag
865 * @param {boolean} midMove set to true if this is not terminating
866 * the slider movement
869 moveThumb: function(x, y, skipAnim, midMove) {
880 t.setDelta(this.thumbCenterPoint.x, this.thumbCenterPoint.y);
882 _p = t.getTargetCoord(x, y);
883 p = [Math.round(_p.x), Math.round(_p.y)];
885 if (this.animate && t._graduated && !skipAnim) {
888 // cache the current thumb pos
889 this.curCoord = getXY(this.thumb.getEl());
890 this.curCoord = [Math.round(this.curCoord[0]), Math.round(this.curCoord[1])];
892 setTimeout( function() { self.moveOneTick(p); }, this.tickPause );
894 } else if (this.animate && Slider.ANIM_AVAIL && !skipAnim) {
898 anim = new YAHOO.util.Motion(
899 t.id, { points: { to: p } },
900 this.animationDuration,
901 YAHOO.util.Easing.easeOut );
903 anim.onComplete.subscribe( function() {
905 if (!self._mouseDown) {
912 t.setDragElPos(x, y);
913 if (!midMove && !this._mouseDown) {
919 _slideStart: function() {
920 if (!this._sliding) {
923 this.fireEvent("slideStart");
925 this._sliding = true;
929 _slideEnd: function() {
930 if (this._sliding && this.moveComplete) {
931 // Reset state before firing slideEnd
932 var silent = this._silent;
933 this._sliding = false;
934 this._silent = false;
935 this.moveComplete = false;
938 this.fireEvent("slideEnd");
944 * Move the slider one tick mark towards its final coordinate. Used
945 * for the animation when tick marks are defined
946 * @method moveOneTick
947 * @param {int[]} the destination coordinate
950 moveOneTick: function(finalCoord) {
958 nextCoord = this._getNextX(this.curCoord, finalCoord);
959 tmpX = (nextCoord !== null) ? nextCoord[0] : this.curCoord[0];
960 nextCoord = this._getNextY(this.curCoord, finalCoord);
961 tmpY = (nextCoord !== null) ? nextCoord[1] : this.curCoord[1];
963 nextCoord = tmpX !== this.curCoord[0] || tmpY !== this.curCoord[1] ?
964 [ tmpX, tmpY ] : null;
965 } else if (t._isHoriz) {
966 nextCoord = this._getNextX(this.curCoord, finalCoord);
968 nextCoord = this._getNextY(this.curCoord, finalCoord);
974 // cache the position
975 this.curCoord = nextCoord;
977 // move to the next coord
978 this.thumb.alignElWithMouse(t.getEl(), nextCoord[0] + this.thumbCenterPoint.x, nextCoord[1] + this.thumbCenterPoint.y);
980 // check if we are in the final position, if not make a recursive call
981 if (!(nextCoord[0] == finalCoord[0] && nextCoord[1] == finalCoord[1])) {
982 setTimeout(function() { self.moveOneTick(finalCoord); },
986 if (!this._mouseDown) {
992 if (!this._mouseDown) {
999 * Returns the next X tick value based on the current coord and the target coord.
1003 _getNextX: function(curCoord, finalCoord) {
1009 if (curCoord[0] > finalCoord[0]) {
1010 thresh = t.tickSize - this.thumbCenterPoint.x;
1011 tmp = t.getTargetCoord( curCoord[0] - thresh, curCoord[1] );
1012 nextCoord = [tmp.x, tmp.y];
1013 } else if (curCoord[0] < finalCoord[0]) {
1014 thresh = t.tickSize + this.thumbCenterPoint.x;
1015 tmp = t.getTargetCoord( curCoord[0] + thresh, curCoord[1] );
1016 nextCoord = [tmp.x, tmp.y];
1018 // equal, do nothing
1025 * Returns the next Y tick value based on the current coord and the target coord.
1029 _getNextY: function(curCoord, finalCoord) {
1035 if (curCoord[1] > finalCoord[1]) {
1036 thresh = t.tickSize - this.thumbCenterPoint.y;
1037 tmp = t.getTargetCoord( curCoord[0], curCoord[1] - thresh );
1038 nextCoord = [tmp.x, tmp.y];
1039 } else if (curCoord[1] < finalCoord[1]) {
1040 thresh = t.tickSize + this.thumbCenterPoint.y;
1041 tmp = t.getTargetCoord( curCoord[0], curCoord[1] + thresh );
1042 nextCoord = [tmp.x, tmp.y];
1044 // equal, do nothing
1051 * Resets the constraints before moving the thumb.
1052 * @method b4MouseDown
1055 b4MouseDown: function(e) {
1056 if (!this.backgroundEnabled) {
1060 this.thumb.autoOffset();
1061 this.resetThumbConstraints();
1065 * Handles the mousedown event for the slider background
1066 * @method onMouseDown
1069 onMouseDown: function(e) {
1070 if (!this.backgroundEnabled || this.isLocked()) {
1074 this._mouseDown = true;
1076 var x = Event.getPageX(e),
1077 y = Event.getPageY(e);
1082 this.moveThumb(x, y);
1086 * Handles the onDrag event for the slider background
1090 onDrag: function(e) {
1091 if (this.backgroundEnabled && !this.isLocked()) {
1092 var x = Event.getPageX(e),
1093 y = Event.getPageY(e);
1094 this.moveThumb(x, y, true, true);
1100 * Fired when the slider movement ends
1104 endMove: function () {
1107 this.moveComplete = true;
1112 * Resets the X and Y contraints for the thumb. Used in lieu of the thumb
1113 * instance's inherited resetConstraints because some logic was not
1115 * @method resetThumbConstraints
1118 resetThumbConstraints: function () {
1121 t.setXConstraint(t.leftConstraint, t.rightConstraint, t.xTickSize);
1122 t.setYConstraint(t.topConstraint, t.bottomConstraint, t.xTickSize);
1126 * Fires the change event if the value has been changed. Ignored if we are in
1127 * the middle of an animation as the event will fire when the animation is
1129 * @method fireEvents
1130 * @param {boolean} thumbEvent set to true if this event is fired from an event
1131 * that occurred on the thumb. If it is, the state of the
1132 * thumb dd object should be correct. Otherwise, the event
1133 * originated on the background, so the thumb state needs to
1134 * be refreshed before proceeding.
1137 fireEvents: function (thumbEvent) {
1139 var t = this.thumb, newX, newY, newVal;
1145 if (! this.isLocked()) {
1147 newX = t.getXValue();
1148 newY = t.getYValue();
1150 if (newX != this.previousX || newY != this.previousY) {
1151 if (!this._silent) {
1152 this.onChange(newX, newY);
1153 this.fireEvent("change", { x: newX, y: newY });
1157 this.previousX = newX;
1158 this.previousY = newY;
1161 newVal = t.getValue();
1162 if (newVal != this.previousVal) {
1163 if (!this._silent) {
1164 this.onChange( newVal );
1165 this.fireEvent("change", newVal);
1168 this.previousVal = newVal;
1177 * @return {string} string representation of the instance
1179 toString: function () {
1180 return ("Slider (" + this.type +") " + this.id);
1185 YAHOO.lang.augmentProto(Slider, YAHOO.util.EventProvider);
1187 YAHOO.widget.Slider = Slider;
1190 * A drag and drop implementation to be used as the thumb of a slider.
1191 * @class SliderThumb
1192 * @extends YAHOO.util.DD
1194 * @param {String} id the id of the slider html element
1195 * @param {String} sGroup the group of related DragDrop items
1196 * @param {int} iLeft the number of pixels the element can move left
1197 * @param {int} iRight the number of pixels the element can move right
1198 * @param {int} iUp the number of pixels the element can move up
1199 * @param {int} iDown the number of pixels the element can move down
1200 * @param {int} iTickSize optional parameter for specifying that the element
1201 * should move a certain number pixels at a time.
1203 YAHOO.widget.SliderThumb = function(id, sGroup, iLeft, iRight, iUp, iDown, iTickSize) {
1206 YAHOO.widget.SliderThumb.superclass.constructor.call(this, id, sGroup);
1209 * The id of the thumbs parent HTML element (the slider background
1211 * @property parentElId
1214 this.parentElId = sGroup;
1220 * Overrides the isTarget property in YAHOO.util.DragDrop
1221 * @property isTarget
1224 this.isTarget = false;
1227 * The tick size for this slider
1228 * @property tickSize
1232 this.tickSize = iTickSize;
1235 * Informs the drag and drop util that the offsets should remain when
1236 * resetting the constraints. This preserves the slider value when
1237 * the constraints are reset
1238 * @property maintainOffset
1242 this.maintainOffset = true;
1244 this.initSlider(iLeft, iRight, iUp, iDown, iTickSize);
1247 * Turns off the autoscroll feature in drag and drop
1251 this.scroll = false;
1255 YAHOO.extend(YAHOO.widget.SliderThumb, YAHOO.util.DD, {
1258 * The (X and Y) difference between the thumb location and its parent
1259 * (the slider background) when the control is instantiated.
1260 * @property startOffset
1266 * Override the default setting of dragOnly to true.
1267 * @property dragOnly
1274 * Flag used to figure out if this is a horizontal or vertical slider
1275 * @property _isHoriz
1282 * Cache the last value so we can check for change
1283 * @property _prevVal
1290 * The slider is _graduated if there is a tick interval defined
1291 * @property _graduated
1299 * Returns the difference between the location of the thumb and its parent.
1300 * @method getOffsetFromParent
1301 * @param {[int, int]} parentPos Optionally accepts the position of the parent
1304 getOffsetFromParent0: function(parentPos) {
1305 var myPos = YAHOO.util.Dom.getXY(this.getEl()),
1306 ppos = parentPos || YAHOO.util.Dom.getXY(this.parentElId);
1308 return [ (myPos[0] - ppos[0]), (myPos[1] - ppos[1]) ];
1311 getOffsetFromParent: function(parentPos) {
1313 var el = this.getEl(), newOffset,
1314 myPos,ppos,l,t,deltaX,deltaY,newLeft,newTop;
1316 if (!this.deltaOffset) {
1318 myPos = YAHOO.util.Dom.getXY(el);
1319 ppos = parentPos || YAHOO.util.Dom.getXY(this.parentElId);
1321 newOffset = [ (myPos[0] - ppos[0]), (myPos[1] - ppos[1]) ];
1323 l = parseInt( YAHOO.util.Dom.getStyle(el, "left"), 10 );
1324 t = parseInt( YAHOO.util.Dom.getStyle(el, "top" ), 10 );
1326 deltaX = l - newOffset[0];
1327 deltaY = t - newOffset[1];
1329 if (isNaN(deltaX) || isNaN(deltaY)) {
1331 this.deltaOffset = [deltaX, deltaY];
1335 newLeft = parseInt( YAHOO.util.Dom.getStyle(el, "left"), 10 );
1336 newTop = parseInt( YAHOO.util.Dom.getStyle(el, "top" ), 10 );
1338 newOffset = [newLeft + this.deltaOffset[0], newTop + this.deltaOffset[1]];
1345 * Set up the slider, must be called in the constructor of all subclasses
1346 * @method initSlider
1347 * @param {int} iLeft the number of pixels the element can move left
1348 * @param {int} iRight the number of pixels the element can move right
1349 * @param {int} iUp the number of pixels the element can move up
1350 * @param {int} iDown the number of pixels the element can move down
1351 * @param {int} iTickSize the width of the tick interval.
1353 initSlider: function (iLeft, iRight, iUp, iDown, iTickSize) {
1354 this.initLeft = iLeft;
1355 this.initRight = iRight;
1357 this.initDown = iDown;
1359 this.setXConstraint(iLeft, iRight, iTickSize);
1360 this.setYConstraint(iUp, iDown, iTickSize);
1362 if (iTickSize && iTickSize > 1) {
1363 this._graduated = true;
1366 this._isHoriz = (iLeft || iRight);
1367 this._isVert = (iUp || iDown);
1368 this._isRegion = (this._isHoriz && this._isVert);
1373 * Clear's the slider's ticks
1374 * @method clearTicks
1376 clearTicks: function () {
1377 YAHOO.widget.SliderThumb.superclass.clearTicks.call(this);
1379 this._graduated = false;
1384 * Gets the current offset from the element's start position in
1387 * @return {int} the number of pixels (positive or negative) the
1388 * slider has moved from the start position.
1390 getValue: function () {
1391 return (this._isHoriz) ? this.getXValue() : this.getYValue();
1395 * Gets the current X offset from the element's start position in
1398 * @return {int} the number of pixels (positive or negative) the
1399 * slider has moved horizontally from the start position.
1401 getXValue: function () {
1402 if (!this.available) {
1405 var newOffset = this.getOffsetFromParent();
1406 if (YAHOO.lang.isNumber(newOffset[0])) {
1407 this.lastOffset = newOffset;
1408 return (newOffset[0] - this.startOffset[0]);
1410 return (this.lastOffset[0] - this.startOffset[0]);
1415 * Gets the current Y offset from the element's start position in
1418 * @return {int} the number of pixels (positive or negative) the
1419 * slider has moved vertically from the start position.
1421 getYValue: function () {
1422 if (!this.available) {
1425 var newOffset = this.getOffsetFromParent();
1426 if (YAHOO.lang.isNumber(newOffset[1])) {
1427 this.lastOffset = newOffset;
1428 return (newOffset[1] - this.startOffset[1]);
1430 return (this.lastOffset[1] - this.startOffset[1]);
1437 * @return {string} string representation of the instance
1439 toString: function () {
1440 return "SliderThumb " + this.id;
1444 * The onchange event for the handle/thumb is delegated to the YAHOO.widget.Slider
1445 * instance it belongs to.
1449 onChange: function (x, y) {
1454 * A slider with two thumbs, one that represents the min value and
1455 * the other the max. Actually a composition of two sliders, both with
1456 * the same background. The constraints for each slider are adjusted
1457 * dynamically so that the min value of the max slider is equal or greater
1458 * to the current value of the min slider, and the max value of the min
1459 * slider is the current value of the max slider.
1460 * Constructor assumes both thumbs are positioned absolutely at the 0 mark on
1463 * @namespace YAHOO.widget
1465 * @uses YAHOO.util.EventProvider
1467 * @param {Slider} minSlider The Slider instance used for the min value thumb
1468 * @param {Slider} maxSlider The Slider instance used for the max value thumb
1469 * @param {int} range The number of pixels the thumbs may move within
1470 * @param {Array} initVals (optional) [min,max] Initial thumb placement
1474 var Event = YAHOO.util.Event,
1477 function DualSlider(minSlider, maxSlider, range, initVals) {
1480 ready = { min : false, max : false },
1481 minThumbOnMouseDown, maxThumbOnMouseDown;
1484 * A slider instance that keeps track of the lower value of the range.
1485 * <strong>read only</strong>
1486 * @property minSlider
1489 this.minSlider = minSlider;
1492 * A slider instance that keeps track of the upper value of the range.
1493 * <strong>read only</strong>
1494 * @property maxSlider
1497 this.maxSlider = maxSlider;
1500 * The currently active slider (min or max). <strong>read only</strong>
1501 * @property activeSlider
1504 this.activeSlider = minSlider;
1507 * Is the DualSlider oriented horizontally or vertically?
1508 * <strong>read only</strong>
1512 this.isHoriz = minSlider.thumb._isHoriz;
1514 //FIXME: this is horrible
1515 minThumbOnMouseDown = this.minSlider.thumb.onMouseDown;
1516 maxThumbOnMouseDown = this.maxSlider.thumb.onMouseDown;
1517 this.minSlider.thumb.onMouseDown = function() {
1518 self.activeSlider = self.minSlider;
1519 minThumbOnMouseDown.apply(this,arguments);
1521 this.maxSlider.thumb.onMouseDown = function () {
1522 self.activeSlider = self.maxSlider;
1523 maxThumbOnMouseDown.apply(this,arguments);
1526 this.minSlider.thumb.onAvailable = function () {
1527 minSlider.setStartSliderState();
1530 self.fireEvent('ready',self);
1533 this.maxSlider.thumb.onAvailable = function () {
1534 maxSlider.setStartSliderState();
1537 self.fireEvent('ready',self);
1541 // dispatch mousedowns to the active slider
1542 minSlider.onMouseDown =
1543 maxSlider.onMouseDown = function(e) {
1544 return this.backgroundEnabled && self._handleMouseDown(e);
1547 // Fix the drag behavior so that only the active slider
1550 maxSlider.onDrag = function(e) {
1551 self._handleDrag(e);
1554 // Likely only the minSlider's onMouseUp will be executed, but both are
1555 // overridden just to be safe
1556 minSlider.onMouseUp =
1557 maxSlider.onMouseUp = function (e) {
1558 self._handleMouseUp(e);
1561 // Replace the _bindKeyEvents for the minSlider and remove that for the
1562 // maxSlider since they share the same bg element.
1563 minSlider._bindKeyEvents = function () {
1564 self._bindKeyEvents(this);
1566 maxSlider._bindKeyEvents = function () {};
1568 // The core events for each slider are handled so we can expose a single
1569 // event for when the event happens on either slider
1570 minSlider.subscribe("change", this._handleMinChange, minSlider, this);
1571 minSlider.subscribe("slideStart", this._handleSlideStart, minSlider, this);
1572 minSlider.subscribe("slideEnd", this._handleSlideEnd, minSlider, this);
1574 maxSlider.subscribe("change", this._handleMaxChange, maxSlider, this);
1575 maxSlider.subscribe("slideStart", this._handleSlideStart, maxSlider, this);
1576 maxSlider.subscribe("slideEnd", this._handleSlideEnd, maxSlider, this);
1579 * Event that fires when the slider is finished setting up
1581 * @param {DualSlider} dualslider the DualSlider instance
1583 this.createEvent("ready", this);
1586 * Event that fires when either the min or max value changes
1588 * @param {DualSlider} dualslider the DualSlider instance
1590 this.createEvent("change", this);
1593 * Event that fires when one of the thumbs begins to move
1595 * @param {Slider} activeSlider the moving slider
1597 this.createEvent("slideStart", this);
1600 * Event that fires when one of the thumbs finishes moving
1602 * @param {Slider} activeSlider the moving slider
1604 this.createEvent("slideEnd", this);
1606 // Validate initial values
1607 initVals = YAHOO.lang.isArray(initVals) ? initVals : [0,range];
1608 initVals[0] = Math.min(Math.max(parseInt(initVals[0],10)|0,0),range);
1609 initVals[1] = Math.max(Math.min(parseInt(initVals[1],10)|0,range),0);
1610 // Swap initVals if min > max
1611 if (initVals[0] > initVals[1]) {
1612 initVals.splice(0,2,initVals[1],initVals[0]);
1614 this.minVal = initVals[0];
1615 this.maxVal = initVals[1];
1617 // Set values so initial assignment when the slider thumbs are ready will
1619 this.minSlider.setValue(this.minVal,true,true,true);
1620 this.maxSlider.setValue(this.maxVal,true,true,true);
1624 DualSlider.prototype = {
1627 * The current value of the min thumb. <strong>read only</strong>.
1634 * The current value of the max thumb. <strong>read only</strong>.
1641 * Pixel distance to maintain between thumbs.
1642 * @property minRange
1649 * Executed when one of the sliders fires the slideStart event
1650 * @method _handleSlideStart
1653 _handleSlideStart: function(data, slider) {
1654 this.fireEvent("slideStart", slider);
1658 * Executed when one of the sliders fires the slideEnd event
1659 * @method _handleSlideEnd
1662 _handleSlideEnd: function(data, slider) {
1663 this.fireEvent("slideEnd", slider);
1667 * Overrides the onDrag method for both sliders
1668 * @method _handleDrag
1671 _handleDrag: function(e) {
1672 YW.Slider.prototype.onDrag.call(this.activeSlider, e);
1676 * Executed when the min slider fires the change event
1677 * @method _handleMinChange
1680 _handleMinChange: function() {
1681 this.activeSlider = this.minSlider;
1686 * Executed when the max slider fires the change event
1687 * @method _handleMaxChange
1690 _handleMaxChange: function() {
1691 this.activeSlider = this.maxSlider;
1696 * Set up the listeners for the keydown and keypress events.
1698 * @method _bindKeyEvents
1701 _bindKeyEvents : function (slider) {
1702 Event.on(slider.id,'keydown', this._handleKeyDown, this,true);
1703 Event.on(slider.id,'keypress',this._handleKeyPress,this,true);
1707 * Delegate event handling to the active Slider. See Slider.handleKeyDown.
1709 * @method _handleKeyDown
1710 * @param e {Event} the mousedown DOM event
1713 _handleKeyDown : function (e) {
1714 this.activeSlider.handleKeyDown.apply(this.activeSlider,arguments);
1718 * Delegate event handling to the active Slider. See Slider.handleKeyPress.
1720 * @method _handleKeyPress
1721 * @param e {Event} the mousedown DOM event
1724 _handleKeyPress : function (e) {
1725 this.activeSlider.handleKeyPress.apply(this.activeSlider,arguments);
1729 * Sets the min and max thumbs to new values.
1731 * @param min {int} Pixel offset to assign to the min thumb
1732 * @param max {int} Pixel offset to assign to the max thumb
1733 * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
1735 * @param force {boolean} (optional) ignore the locked setting and set
1736 * value anyway. Default false
1737 * @param silent {boolean} (optional) Set to true to skip firing change
1738 * events. Default false
1740 setValues : function (min, max, skipAnim, force, silent) {
1741 var mins = this.minSlider,
1742 maxs = this.maxSlider,
1746 done = { min : false, max : false };
1748 // Clear constraints to prevent animated thumbs from prematurely
1749 // stopping when hitting a constraint that's moving with the other
1751 if (mint._isHoriz) {
1752 mint.setXConstraint(mint.leftConstraint,maxt.rightConstraint,mint.tickSize);
1753 maxt.setXConstraint(mint.leftConstraint,maxt.rightConstraint,maxt.tickSize);
1755 mint.setYConstraint(mint.topConstraint,maxt.bottomConstraint,mint.tickSize);
1756 maxt.setYConstraint(mint.topConstraint,maxt.bottomConstraint,maxt.tickSize);
1759 // Set up one-time slideEnd callbacks to call updateValue when both
1760 // thumbs have been set
1761 this._oneTimeCallback(mins,'slideEnd',function () {
1764 self.updateValue(silent);
1765 // Clean the slider's slideEnd events on a timeout since this
1766 // will be executed from inside the event's fire
1767 setTimeout(function () {
1768 self._cleanEvent(mins,'slideEnd');
1769 self._cleanEvent(maxs,'slideEnd');
1774 this._oneTimeCallback(maxs,'slideEnd',function () {
1777 self.updateValue(silent);
1778 // Clean both sliders' slideEnd events on a timeout since this
1779 // will be executed from inside one of the event's fire
1780 setTimeout(function () {
1781 self._cleanEvent(mins,'slideEnd');
1782 self._cleanEvent(maxs,'slideEnd');
1787 // Must emit Slider slideEnd event to propagate to updateValue
1788 mins.setValue(min,skipAnim,force,false);
1789 maxs.setValue(max,skipAnim,force,false);
1793 * Set the min thumb position to a new value.
1794 * @method setMinValue
1795 * @param min {int} Pixel offset for min thumb
1796 * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
1798 * @param force {boolean} (optional) ignore the locked setting and set
1799 * value anyway. Default false
1800 * @param silent {boolean} (optional) Set to true to skip firing change
1801 * events. Default false
1803 setMinValue : function (min, skipAnim, force, silent) {
1804 var mins = this.minSlider,
1807 this.activeSlider = mins;
1809 // Use a one-time event callback to delay the updateValue call
1810 // until after the slide operation is done
1812 this._oneTimeCallback(mins,'slideEnd',function () {
1813 self.updateValue(silent);
1814 // Clean the slideEnd event on a timeout since this
1815 // will be executed from inside the event's fire
1816 setTimeout(function () { self._cleanEvent(mins,'slideEnd'); }, 0);
1819 mins.setValue(min, skipAnim, force);
1823 * Set the max thumb position to a new value.
1824 * @method setMaxValue
1825 * @param max {int} Pixel offset for max thumb
1826 * @param skipAnim {boolean} (optional) Set to true to skip thumb animation.
1828 * @param force {boolean} (optional) ignore the locked setting and set
1829 * value anyway. Default false
1830 * @param silent {boolean} (optional) Set to true to skip firing change
1831 * events. Default false
1833 setMaxValue : function (max, skipAnim, force, silent) {
1834 var maxs = this.maxSlider,
1837 this.activeSlider = maxs;
1839 // Use a one-time event callback to delay the updateValue call
1840 // until after the slide operation is done
1841 this._oneTimeCallback(maxs,'slideEnd',function () {
1842 self.updateValue(silent);
1843 // Clean the slideEnd event on a timeout since this
1844 // will be executed from inside the event's fire
1845 setTimeout(function () { self._cleanEvent(maxs,'slideEnd'); }, 0);
1848 maxs.setValue(max, skipAnim, force);
1852 * Executed when one of the sliders is moved
1853 * @method updateValue
1854 * @param silent {boolean} (optional) Set to true to skip firing change
1855 * events. Default false
1858 updateValue: function(silent) {
1859 var min = this.minSlider.getValue(),
1860 max = this.maxSlider.getValue(),
1862 mint,maxt,dim,minConstraint,maxConstraint,thumbInnerWidth;
1864 if (min != this.minVal || max != this.maxVal) {
1867 mint = this.minSlider.thumb;
1868 maxt = this.maxSlider.thumb;
1869 dim = this.isHoriz ? 'x' : 'y';
1871 thumbInnerWidth = this.minSlider.thumbCenterPoint[dim] +
1872 this.maxSlider.thumbCenterPoint[dim];
1874 // Establish barriers within the respective other thumb's edge, less
1875 // the minRange. Limit to the Slider's range in the case of
1876 // negative minRanges.
1877 minConstraint = Math.max(max-thumbInnerWidth-this.minRange,0);
1878 maxConstraint = Math.min(-min-thumbInnerWidth-this.minRange,0);
1881 minConstraint = Math.min(minConstraint,maxt.rightConstraint);
1883 mint.setXConstraint(mint.leftConstraint,minConstraint, mint.tickSize);
1885 maxt.setXConstraint(maxConstraint,maxt.rightConstraint, maxt.tickSize);
1887 minConstraint = Math.min(minConstraint,maxt.bottomConstraint);
1888 mint.setYConstraint(mint.leftConstraint,minConstraint, mint.tickSize);
1890 maxt.setYConstraint(maxConstraint,maxt.bottomConstraint, maxt.tickSize);
1897 if (changed && !silent) {
1898 this.fireEvent("change", this);
1903 * A background click will move the slider thumb nearest to the click.
1904 * Override if you need different behavior.
1905 * @method selectActiveSlider
1906 * @param e {Event} the mousedown event
1909 selectActiveSlider: function(e) {
1910 var min = this.minSlider,
1911 max = this.maxSlider,
1912 minLocked = min.isLocked() || !min.backgroundEnabled,
1913 maxLocked = max.isLocked() || !min.backgroundEnabled,
1914 Ev = YAHOO.util.Event,
1917 if (minLocked || maxLocked) {
1918 this.activeSlider = minLocked ? max : min;
1921 d = Ev.getPageX(e)-min.thumb.initPageX-min.thumbCenterPoint.x;
1923 d = Ev.getPageY(e)-min.thumb.initPageY-min.thumbCenterPoint.y;
1926 this.activeSlider = d*2 > max.getValue()+min.getValue() ? max : min;
1931 * Delegates the onMouseDown to the appropriate Slider
1933 * @method _handleMouseDown
1934 * @param e {Event} mouseup event
1937 _handleMouseDown: function(e) {
1940 this.selectActiveSlider(e);
1941 return YW.Slider.prototype.onMouseDown.call(this.activeSlider, e);
1948 * Delegates the onMouseUp to the active Slider
1950 * @method _handleMouseUp
1951 * @param e {Event} mouseup event
1954 _handleMouseUp : function (e) {
1955 YW.Slider.prototype.onMouseUp.apply(
1956 this.activeSlider, arguments);
1960 * Schedule an event callback that will execute once, then unsubscribe
1962 * @method _oneTimeCallback
1963 * @param o {EventProvider} Object to attach the event to
1964 * @param evt {string} Name of the event
1965 * @param fn {Function} function to execute once
1968 _oneTimeCallback : function (o,evt,fn) {
1969 o.subscribe(evt,function () {
1970 // Unsubscribe myself
1971 o.unsubscribe(evt,arguments.callee);
1972 // Pass the event handler arguments to the one time callback
1973 fn.apply({},[].slice.apply(arguments));
1978 * Clean up the slideEnd event subscribers array, since each one-time
1979 * callback will be replaced in the event's subscribers property with
1980 * null. This will cause memory bloat and loss of performance.
1981 * @method _cleanEvent
1982 * @param o {EventProvider} object housing the CustomEvent
1983 * @param evt {string} name of the CustomEvent
1986 _cleanEvent : function (o,evt) {
1987 var ce,i,len,j,subs,newSubs;
1989 if (o.__yui_events && o.events[evt]) {
1990 for (i = o.__yui_events.length; i >= 0; --i) {
1991 if (o.__yui_events[i].type === evt) {
1992 ce = o.__yui_events[i];
1997 subs = ce.subscribers;
2000 for (i = 0, len = subs.length; i < len; ++i) {
2002 newSubs[j++] = subs[i];
2005 ce.subscribers = newSubs;
2012 YAHOO.lang.augmentProto(DualSlider, YAHOO.util.EventProvider);
2016 * Factory method for creating a horizontal dual-thumb slider
2017 * @for YAHOO.widget.Slider
2018 * @method YAHOO.widget.Slider.getHorizDualSlider
2020 * @param {String} bg the id of the slider's background element
2021 * @param {String} minthumb the id of the min thumb
2022 * @param {String} maxthumb the id of the thumb thumb
2023 * @param {int} range the number of pixels the thumbs can move within
2024 * @param {int} iTickSize (optional) the element should move this many pixels
2026 * @param {Array} initVals (optional) [min,max] Initial thumb placement
2027 * @return {DualSlider} a horizontal dual-thumb slider control
2029 YW.Slider.getHorizDualSlider =
2030 function (bg, minthumb, maxthumb, range, iTickSize, initVals) {
2031 var mint = new YW.SliderThumb(minthumb, bg, 0, range, 0, 0, iTickSize),
2032 maxt = new YW.SliderThumb(maxthumb, bg, 0, range, 0, 0, iTickSize);
2034 return new DualSlider(
2035 new YW.Slider(bg, bg, mint, "horiz"),
2036 new YW.Slider(bg, bg, maxt, "horiz"),
2041 * Factory method for creating a vertical dual-thumb slider.
2042 * @for YAHOO.widget.Slider
2043 * @method YAHOO.widget.Slider.getVertDualSlider
2045 * @param {String} bg the id of the slider's background element
2046 * @param {String} minthumb the id of the min thumb
2047 * @param {String} maxthumb the id of the thumb thumb
2048 * @param {int} range the number of pixels the thumbs can move within
2049 * @param {int} iTickSize (optional) the element should move this many pixels
2051 * @param {Array} initVals (optional) [min,max] Initial thumb placement
2052 * @return {DualSlider} a vertical dual-thumb slider control
2054 YW.Slider.getVertDualSlider =
2055 function (bg, minthumb, maxthumb, range, iTickSize, initVals) {
2056 var mint = new YW.SliderThumb(minthumb, bg, 0, 0, 0, range, iTickSize),
2057 maxt = new YW.SliderThumb(maxthumb, bg, 0, 0, 0, range, iTickSize);
2059 return new YW.DualSlider(
2060 new YW.Slider(bg, bg, mint, "vert"),
2061 new YW.Slider(bg, bg, maxt, "vert"),
2065 YAHOO.widget.DualSlider = DualSlider;
2068 YAHOO.register("slider", YAHOO.widget.Slider, {version: "2.7.0", build: "1799"});