i have a datagrid myDg, and i am trying to make a cell focusable after 
a particular column index loses focus. but it just isnt working and yes 
the datagrid has editable columns and the indexes to be focused are 
also editable.

am i missing something ?

function tabChecker(evtObj:Object):Void
{                                       
        if (Key.isDown(Key.TAB)) 
        { 
                if(evtObj.columnIndex==2)
                {
                   myDg.focusedCell={itemIndex:0, columnIndex:2};
                }
        }       
}

thanks for your help




--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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