Re: [flexcoders] Re: Remove Row from XMLList Good news / Bad news

2007-05-01 Thread Michael Schmalle
Hmm. Since you are accessing a dataProvider, try; // do whatever remove var p:ICollectionView = ICollectionView (myPopUpButton.dataProvider); p.refresh(); I think delete doesn't trigger a refresh. There is a way to interface with your dataProvider's ICollectionView that should, once the

RE: [flexcoders] Re: Remove Row from XMLList Good news / Bad news

2007-05-01 Thread Tracy Spratt
... error Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Tuesday, May 01, 2007 11:29 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Remove Row from XMLList Good news / Bad news Hmm