For the column with dataField="name", when an itemRollOver occurs, the event.itemRenderer.data.name should be the value. -Alex
________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Sent: Tuesday, March 27, 2007 7:40 AM To: [email protected] Subject: [flexcoders] Need help with a dataGrid itemRollOver I need to display a different image for each value in the dataGrid. I'm trying to use the itemRollOver but for some reason I'm having a hard time getting the value of the "name" column in the function. Can someone help? I didn't post my function because I'm just trying to trace the value from the name column and I can't get it to work. If I can get that value I'm confident I can get the image to work the way I need it. Thanks <mx:DataGrid width="100%" height="100%" dataProvider="{countryAndCount}" itemRollOver="itemRollOverFunction (Event);> <mx:columns> <mx:DataGridColumn headerText="Country" dataField="name"/> <mx:DataGridColumn headerText="Projects" dataField="code"/> </mx:columns> </mx:DataGrid>

