The information you need should be right there in the itemFocusOut event object. I suspect the function should look something like
removeInfoBox(event.currentTarget.dataProvider[event.rowIndex]) --- In [email protected], "jldteixeira" <[EMAIL PROTECTED]> wrote: > > Hi, I want to call a function when i deselect an item from datagrid > and i want to parse the unselected item to the function like: > > <mx:DataGrid id="showsList" dataProvider="{showsData}" > width="600" height="100%" draggableColumns="false" > resizableColumns="false" sortableColumns="false" > itemClick="showShowInfo(this.SelectedItem)" > allowMultipleSelection="true" > itemFocusOut="removeInfoBox(**??unselectedItem??**)" /> > > Thanks in advance > -- 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/

