[ 
https://issues.apache.org/jira/browse/FLEX-35288?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Piotr Zarzycki resolved FLEX-35288.
-----------------------------------
       Resolution: Fixed
    Fix Version/s: Apache FlexJS 0.8.0

Fixed: 405fe49c89180d3e256ed9b4775db3caf20b1f97 

> [FlexJS, MDL] slider step size can't be less than 1
> ---------------------------------------------------
>
>                 Key: FLEX-35288
>                 URL: https://issues.apache.org/jira/browse/FLEX-35288
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: FlexJS
>    Affects Versions: Apache FlexJS 0.8.0
>            Reporter: Yishay Weiss
>            Assignee: Piotr Zarzycki
>             Fix For: Apache FlexJS 0.8.0
>
>
> In the following app, trace statements should show a 0.1 increment, yet it's 
> 1.
> {code}
> <?xml version="1.0" encoding="utf-8"?>
> <js:Application xmlns:fx="http://ns.adobe.com/mxml/2009";
>                               xmlns:js="library://ns.apache.org/flexjs/basic" 
>                               xmlns:ns="library://ns.apache.org/flexjs/mdl"
>                               >
>       <fx:Script>
>               <![CDATA[
>                       import org.apache.flex.events.Event;
>                       
>                       protected function 
> slider1_inputHandler(event:org.apache.flex.events.Event):void
>                       {
>                               trace(mySlider.value);
>                       }
>                       
>               ]]>
>       </fx:Script>
>       <js:beads>
>               <js:BrowserResizeHandler/>
>       </js:beads>
>       <js:valuesImpl>
>               <js:SimpleCSSValuesImpl/>
>       </js:valuesImpl>
>       
>       <js:initialView>
>               <js:View width="100%" height="100%" id="myView">
>                       <ns:Slider id="mySlider" minimum="0" maximum="5" 
> stepSize="0.1" input="slider1_inputHandler(event)" width="100"/>
>               </js:View>
>       </js:initialView>
> </js:Application>
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to