#5591 closed bug (fixed)
Slider: can go outside min and max with keyboard
Reported by: | koder | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.8.2 |
Component: | ui.slider | Version: | 1.8.1 |
Keywords: | min value pagedown pgdown | Cc: | [email protected]… |
Blocked by: | Blocking: |
Description
When you create a slider with a min and max set. It will not slide under that min. That is correct.
However, when you use PageDown you *can* go under the min value! This is unwanted behaviour.
REPRODUCE:
- Make a slide that prints out its current value
- Move a slider up by a few steps
- Press PageDown all the way
- In some cases, it will go below its minimum value
EXAMPLE:
Change History (8)
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
Summary: | Slider can go below its defined minimum → Slider: can go below its defined minimum with PageDown |
---|
comment:4 Changed 13 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
Please forgive me for reopening this ticket.
Thanks for rdworth's patch.
"UP, RIGHT have the same problem." means,
.slider({ min : 0, value : 90, max : 100, step : 15 });
90(curVal) + 15(step) = 105(newVal) > 100(valueMax).
Could I ask you to call _trimAlignValue() when adding/subtracting step?
comment:5 Changed 13 years ago by
Summary: | Slider: can go below its defined minimum with PageDown → Slider: can go outside min and max with keyboard |
---|
comment:6 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
Thanks watanabe.
Further fixed in 114c001
comment:7 Changed 13 years ago by
Milestone: | TBD → 1.8.2 |
---|
comment:8 Changed 12 years ago by
Autocomplete: Store term when selecting an item to prevent another search triggered before blur. Fixes #5591 - Home and End keys trigger search
Changeset: dea2f8a7fc1d7c1d8fbf69aa50d7c1f28c3f35b6
I think it's bug.
jQuery UI 1.8.1
jquery.ui.slider.js
line 186 (ui.slider _create this.handles.keydown)
PAGE_UP, UP, RIGHT, DOWN, LEFT have the same problem.
line 204 (the end of the switch block)
may work.