When in doubt dump your data to make sure you are getting what you think you are (in a change event handler for instance):
import mx.utils.ObjectUtil; trace(ObjectUtil.toString(masterList.selectedItem)); --- In [email protected], "bghoward3" <[EMAIL PROTECTED]> wrote: > > i am trying to use a query as follows > > SELECT * > FROM tblUserDirectory, tblUser, tblTeamMember > WHERE tblUserDirectory.intUserID = tblUser.intUserID > AND tblTeamMember.intUserID = tblUser.intUserID > ORDER BY strUserLastName > > selecting everything form 3 differnt tables, using a master data > grid and the SelectedItem command i am able to populate fields in a > custom tab component, no problem, the problem is that only one table > seems to be acceisble in using the "SelectedItem: command > > when i call > > > <mx:GridItem width="100%" height="100%"> > <mx:TextArea width="400" > htmlText="{masterList.selectedItem.strUserFirstName}" height="19"/> > </mx:GridItem> > > it works, > > but when it gets to another element; > > <mx:GridItem width="100%" height="100%"> > <mx:TextArea width="400" > htmlText="{masterList.selectedItem.strAddrLine1}" height="19"/> > </mx:GridItem> > > i have no luck populating > > note: strAddrLine1 is fouind in table tblUserDirectory > > note: strUserFirstName is found in table tblUser > > any ideas? > > thanks > -- 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/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/flexcoders/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> 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/

