Tagged Questions
The numericstepper tag has no wiki summary.
3
votes
1answer
193 views
Flex NumericStepper with leading 0 on numbers below 10?
Is there a way to make NumericStepper shows leading 0 to numbers which is below 10 ?
( like 01, 02, 03 ... 09, 10, 11 )
1
vote
2answers
160 views
I want to force the user to edit the value of the NumericStepper by using the arrows only so they cannot type a value directly into the value field
When using the NumericStepper I want to force the user to only be able to edit the value using the NumericStepper's up and down arrows. I do not want the user to be able to type in a value directly. ...
1
vote
3answers
2k views
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 ...
0
votes
0answers
44 views
Flex: NumericStepper rounding up decimal number
I have the following NumericStepper:
<s:NumericStepper id="estimertTidCell" value="{isNaN(hostComponent.estimertTid)?0:hostComponent.estimertTid}" stepSize="0.5" maximum="5" ...
0
votes
1answer
347 views
FLEX 4 Numeric Stepper value update problem?
i have numeric stepper in MXML component.when i entered manually numeric value and press a button to add the current value in my datagrid column row.First time its not effected in datagrid column.But ...
0
votes
2answers
271 views
AS3 flash currencyformatter for Flash
I need help in extending the proper string?? to format my numericstepper and/or text display fields to currency formatted. You can download the FLA from CS5 flash FLA HERE. Thanks
/* start ...
0
votes
2answers
317 views
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 ...
0
votes
1answer
572 views
Convert number into words using flex
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" ...
0
votes
2answers
183 views
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" ...
0
votes
2answers
3k views
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?
...
0
votes
3answers
1k views
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 ...