--- In [email protected], "Josh McDonald" <[EMAIL PROTECTED]> wrote: > > As long as ProgramModel.woCalSelectedDayData is bindable, the binding will > work. But you're only going to be getting a pointer to the same object. Your > "local" instance is the same instance as you would get with > ProgramModel.getInstance().woCalSelectedDayData so any filters you apply > will also affect anything else that's bound to the same object. > > If you want local filtering, you will have to use a ListCollectionView and > bind its source to pm.woCalSelectedDayData.
Since ArrayCollection extends ListCollectionView, what advantage to you get from using a ListCollectionView with the same source as an ArrayCollection vs. using a second ArrayCollection with the same source?

