Daniel, I believe it's possible to do this with one array collection.
Set up 3 datagrids with the dataprovider set to your array collection variable. For each datagrid specify the columns you want to be displayed: <mx:columns> <mx:Array> <mx:DataGridColumn dataField="@name" headerText="Name"/> <mx:DataGridColumn dataField="@total" headerText="Total"/> </mx:Array> </mx:columns> That should to it... Phil --- In [email protected], "Dan" <[EMAIL PROTECTED]> wrote: > > Hi, > > I want to have 3 datagrids with the same dataprovider but show > different part of it according to the filterFunction? Is it possible? > Or i need to copy the arraycollection into three and each have to > update back the original one by the <observe> tag by adobe??? Anyone > has any idea? Thanks > > Daniel >

