Depending on your data, you may need to call itemUpdated
________________________________ From: [email protected] [mailto:[EMAIL PROTECTED] On Behalf Of Dan Pride Sent: Friday, July 18, 2008 4:07 AM To: [email protected] Subject: [flexcoders] Screen Refresh function?? I have a screen with datagrid lists which list the basics. Users double click list items to display and enter further data. The screen does not display the values on the first change of the selected child canvas. After the first attempt it always does, but the "first impression" bites. Is there a way to get this to display first and every time??? Basic function I am using on the doubleclick on the datagrid is: private function displayLoca():void{ applicationScreens.selectedChild = locaScreen; locaName.text = locaGrid.selectedItem.NameCol; locaField.text = locaGrid.selectedItem.FieldCol; locaSquare.text = locaGrid.selectedItem.SquareCol; } Thanks Dan Pride

