[flexcoders] Re: sending user selections back from TitleWindow to itemRenderer (parent) - how

2006-08-21 Thread bhaq1972
is the datagrid item editor instance still alive when you close the popup. if so just set that with the data. if(dg.itemEditorInstance) { var yr:YourRenderer = YourRenderer(dg.itemEditorInstance); yr.AcademicText = newAcademic; } . or you can always pass a reference of the datagrid into your

[flexcoders] Re: sending user selections back from TitleWindow to itemRenderer (parent) - how

2006-08-20 Thread barry.beattie
LOL! thanx anyhoo, Doug. I can guess that all I need to do is get a reference to the origional ArrayCollection (the dataGrid's dataProvider) from within the titleWindow and let the [binding] do the rest... but it's a read then append then save. I've tried but keep getting scoping issues from