Repository: flex-asjs Updated Branches: refs/heads/develop 3faaa5f69 -> c90180e60
Updated test for slider changes. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/c90180e6 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/c90180e6 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/c90180e6 Branch: refs/heads/develop Commit: c90180e60f726b3643e49da64d9dc0a4887cf16d Parents: 3faaa5f Author: Peter Ent <[email protected]> Authored: Tue Dec 6 14:19:00 2016 -0500 Committer: Peter Ent <[email protected]> Committed: Tue Dec 6 14:19:00 2016 -0500 ---------------------------------------------------------------------- .../FlexJSTest_Panel/src/MyInitialView.mxml | 30 ++++++++++++++++---- 1 file changed, 24 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/c90180e6/manualtests/FlexJSTest_Panel/src/MyInitialView.mxml ---------------------------------------------------------------------- diff --git a/manualtests/FlexJSTest_Panel/src/MyInitialView.mxml b/manualtests/FlexJSTest_Panel/src/MyInitialView.mxml index 843ff6c..11355e5 100644 --- a/manualtests/FlexJSTest_Panel/src/MyInitialView.mxml +++ b/manualtests/FlexJSTest_Panel/src/MyInitialView.mxml @@ -99,6 +99,20 @@ limitations under the License. background-color: #FFFFCC; } + .SliderThumb { + background-color: #EEEEEE; + border-style: solid; + border-color: #000000; + border-thickness: 1; + } + + .SliderTrack { + background-color: #999999; + border-style: solid; + border-color: #000000; + border-thickness: 1; + } + @media -flex-flash { .TitleBar { @@ -127,17 +141,21 @@ limitations under the License. <js:TextButton text="Show Simple Alert" click="showSimpleAlert()" /> <js:Label text="Displays an Alert which can have multiple buttons." /> <js:TextButton text="Push Me" click="onButtonClick()" /> - <js:Label id="spinMe" /> + <js:Spacer height="10" /> + <js:Label id="spinMe" text="stepper value" /> <js:NumericStepper id="stepper" valueChange="spinnerChanged(stepper)" className="numStepper" stepSize="10"/> - <js:Label id="slideMe" /> - <js:Slider id="slider" + <js:Spacer height="10" /> + <js:Label id="slideMe" text="slider value" /> + <js:Slider id="slider" width="200" valueChange="sliderChanged(slider)" - minimum="20" - maximum="80" - stepSize="5" /> + minimum="0" + maximum="100" + stepSize="1" /> + + <js:Spacer height="10" /> </js:Panel>
