brianraymes opened a new issue #985:
URL: https://github.com/apache/royale-asjs/issues/985


   A NumericStepper's value property fails to display bindable values.
   
   **Steps to Reproduce**
   
   1. Create a bindable number
   
   ```
       <fx:Script>
           <![CDATA[
               [Bindable]
               public var someBindableValue:Number = 5;
           ]]>
       </fx:Script>
   ```
   
   2. Add relevant binding bead
   
   ```
       <j:beads>
           <js:ContainerDataBinding />
       </j:beads>
   ```
   
   3. _Create a NumericStepper
   
   ```
   <j:NumericStepper stepSize="1"
       minimum="0"
       maximum="999"
       value="{someBindableValue}" />
   ```
   
   **Expected Results**
   
   The NumericStepper displays "5".
   
   **Actual Results**
   
   The NumericStepper displays "0".


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to