
|
If you were logged in you would be able to see more operations.
|
|
|
Flex SDK
Created: 05/06/08 01:55 PM
Updated: 05/06/08 02:00 PM
|
|
| Component/s: |
mx: Slider
|
|
Security Level:
|
Public
(All JIRA Users
)
|
|
| Severity: |
Cosmetic Issue/Spelling Error
|
| Reproducibility: |
Every Time
|
| Discoverability: |
Medium
|
| Found in Version: |
SDK Flex 3 (Released)
|
| Affected OS(s): |
All OS Platforms
- All
|
| Steps to Reproduce: |
Steps to reproduce:
1. Compile and run attached screenshot.
Actual Results:
The two Sliders should effectively be the same. One explicitly defines a minimum/maximum value, whereas the other uses the default values (which are the same 0,10).
Note that the top (red background) slider adds space to account for non-visible tick lines.
Expected Results:
Setting minimum/maximum should not resize the Slider control.
Workaround (if any):
Setting a tickLength of 0 seems to fix the issue in Flex 3.0 (released SDK)
Steps to reproduce:
1. Compile and run attached screenshot.
Actual Results:
The two Sliders should effectively be the same. One explicitly defines a minimum/maximum value, whereas the other uses the default values (which are the same 0,10).
Note that the top (red background) slider adds space to account for non-visible tick lines.
Expected Results:
Setting minimum/maximum should not resize the Slider control.
Workaround (if any):
Setting a tickLength of 0 seems to fix the issue in Flex 3.0 (released SDK)
|
| Language Found: |
English
|
| Bugbase Id: |
none
|
| QA Owner: |
Ella Mitelman
|
| Resolved by: |
Peter deHaan
|
| Participants: |
Peter deHaan
|
|
All
|
Comments
|
|
Sort Order:
|
|
<mx:HBox backgroundColor="red">
<mx:HSlider id="slider1" minimum="0" maximum="10" />
</mx:HBox>
<mx:HBox backgroundColor="haloGreen">
<mx:HSlider id="slider2" />
</mx:HBox>