Hi All,

Searched and can't find, so here goes :-)

Is there a bug in Flex that doesn't include the NumericStepper in
tabbing? When no tabIndexes are specified on any component, you can tab
to it with no problem. However, when you have for example four
TextInputs at tabIndex 1-4, and a NumericStepper at tabIndex 5, if you
tab past the last TextInput it goes back to tabIndex 1. For example:

<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml";>
        <mx:Form>
                <mx:FormItem label="Tab Index 1">
                        <mx:TextInput id="tione" tabIndex="1"/>
                </mx:FormItem>
                <mx:FormItem label="Tab Index 2">
                        <mx:TextInput id="titwo" tabIndex="2"/>
                </mx:FormItem>
                <mx:FormItem label="Tab Index 3">
                        <mx:TextInput id="tithree" tabIndex="3"/>
                </mx:FormItem>
                <mx:FormItem label="Tab Index 4">
                        <mx:TextInput id="tifour" tabIndex="4"/>
                </mx:FormItem>
                <mx:FormItem label="Tab Index 5">
                        <mx:NumericStepper id="ns" tabIndex="5"/>
                </mx:FormItem>
        </mx:Form>
</mx:Application>

Any ideas or workarounds?

Cheers,
Rich



 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to