numericstepper

Flex: Is there anyway to disable the textfield in the NumericStepper and force the user to change the value only by using the up/down buttons?

Probably not much more to elaborate on here - I'm using a NumericStepper control and I want the user to use the buttons only to change the value in the NS, not by typing into the control - I couldn't find a property to disable the text - does it exist? If it doesn't, how would I subclass this thing to disable the text? ...

Flex: Immediate editing in dataGrid cellEditor

When I am editing a cell in a dataGrid, the changes are not applied to the dataProvider until I finish editing. Is there a way that I can make the changes appear in the dataProvider whilst editing? I would assume that the way of doing this would be to subclass the editor I am using, in this case NumericStepper, but I don't know how I w...

2 numeric stepper components in an item renderer of flex

I have to put 2 numeric stepper components in one column of a datagrid. I suppose I need to write my own item renederer code for that. How to write a code for putting 2 numeric stepper components in one coulmn of datagrid. The 2 numeric steppers would work as time (Hour and Min) components. I cannot use readily availabel time components...

Providing values to components in a dataGrid

I have the follwoing. : mx:DataGridColumn width="125" headerText="Time" editable="false" mx:itemRenderer mx:Component mx:HBox mx:NumericStepper id ="TimeHour" stepSize="1" minimum="0" value="0" maximum="23"/ mx:NumericStepper id ="TimeMinute" stepSize="5" minimum="0" value="0" max...

Convert number into words using flex.

Hi I am trying to convert an entry using a numeric stepper in flex into words to display in a textarea. i.e a user uses the stepper to enter "89" as a value and in the text area the words "Eighty nine" are displayed. After much searching i haven't found anything that helps - a few javascript functions but that is all. any help sampl...

how to create a text stepper control in flex?

I need a control in Flex 3 that is like NumericStepper, but that can display arbitrary strings. Does this control exist? If not, what are your suggestions for creating it, or references you would recommend? For convenience, I'm calling this a TextStepper. I want this as a compact way to display a list of string choices that a user ca...

ActionScript Refactoring NumericStepper And Slider Code

i'm creating NumericStepper and Slider component objects. both have very similar properties, except for a few. i'd like to refactor the code for creating them, but i'm not sure about the best way of doing so. var numericStepper:NumericStepper = new NumericStepper(); numericStepper.width = 50; numericStepper.minimum = 1; numericStepper...