I have a datagrid, which gets filled by an ArrayList. I want one column to be filled by another ArrayList. I've tried doing it like this, but that only gets the first three columns filled, not the last one (with the different ArrayList):
<s:DataGrid x="10" y="281" width="597" height="204" dataProvider="{arEvents}"
requestedRowCount="4">
<s:columns>
<s:ArrayList>
<s:GridColumn dataField="title" headerText="Column 1" ></s:GridColumn>
<s:GridColumn dataField="venue.location.geopoint" headerText="Column 2"></s:GridColumn>
<s:GridColumn dataField="startDate" headerText="Column 3"></s:GridColumn>
<s:GridColumn dataField="{arArtistsPerEvent}" headerText="Column 3"></s:GridColumn>
</s:ArrayList>
</s:columns>
</s:DataGrid>