Side navigation
#1865 closed bug (fixed)
Opened October 31, 2007 01:42AM UTC
Closed February 12, 2008 01:06PM UTC
slider curValue ignores minValue
Reported by: | nostrademons | Owned by: | paul |
---|---|---|---|
Priority: | major | Milestone: | 1.2.2 |
Component: | ui | Version: | 1.2.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
With this test case:
<div id = "slider" class = "ui-slider-1"> <div id = "sliderThumb" class = "ui-slider-handle"></div> </div> <input id = "sliderVal" size = "4"/> <script type = "text/javascript"> $(document).ready(function() { $('#slider').slider({ minValue: 20, maxValue: 40, slide: function(e, ui) { $('#sliderVal').val(ui.slider.curValue); } }); });
The values assigned to the text field range from 0 to 20 instead of 20 to 40.
Attachments (0)
Change History (4)
Changed October 31, 2007 02:06AM UTC by comment:1
Changed November 05, 2007 03:22PM UTC by comment:2
owner: | → paul |
---|---|
status: | new → assigned |
Changed November 16, 2007 07:06PM UTC by comment:3
After more investigation, this seems to be a documentation bug. The correct value is returned by ui.value and ui.values, but the documentation says to use ui.slider.curValue. The patch above breaks other things (notably, the values returned by ui.value and ui.values), so disregard it and fix the documentation so that people don't use the wrong interface.
Changed February 12, 2008 01:06PM UTC by comment:4
resolution: | → fixed |
---|---|
status: | assigned → closed |
Sorry, this has been complete redone and is therefore fixed. Thanks.
Changing line 237 of ui.slider.js from
to
seems to fix the problem.