Hi Akshay, Option 1: Try to give tab index for each component which am not sure, just giving a thought.
Option 2: There is a workaround for solving this issue, but this inlvolves lot of coding. 1. In your data provider add a field to monitor and assign the current focus. 2. Whenever there is a change uin focus, inside your item renderer you have to assign the current focus appropriately in the field, this will help you identify the exact focus inside datagrid. 3. Inside itemrenderer, you have to explicitly assign the focus for Textinputs. (Ex: if focus is in TextInput1, 'onFocusOut' of TextInput1, you have to assign the field values. 4. Once there is any change dataChangeEvent will be dispatched or else yiou can dispatch any custom event. 5. In each component there should be a listerner to set focus. 6. In this case, OnFocusOut of TextInput1, event have to be dispatched and currentFocus field should refer TextInput2, then focus will be assigned to TextInput2, in event listerteners. This procedure have to be taken care for all components used inside DG to get the expected flow. Thanks, Sam On Apr 18, 11:33 am, Akshay Ransing <[email protected]> wrote: > Hi, > > I have a data grid with dynamic columns and dynamic rows. > Each columns have same item renderer which is custom made with 3 text > inputs. > > My problem is I want to travel between cells but my tab should work > like for each cell it should travel from 1st to 3rd text input from > rendere and from 3rd text input to next cell. -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/flex_india?hl=en.

