Yes you can, but this does not allow the ability to access the fields
in the data provider by name.
In my existing programs I might have something like;
================================================================
<mx:DataGrid x="10" y="64" width="599" height="424"
id="grdPERSONResults"
itemClick="grdPERSONSelected(event);" >
<mx:columns>
<mx:DataGridColumn headerText="Number" textAlign="right"
width="60" dataField="PERSON_NUMBER"/>
<mx:DataGridColumn headerText="Name" width="200"
dataField="PERSON_NAME"/>
<mx:DataGridColumn headerText="Original #" textAlign="right"
width="65" dataField="PERSON_ORIG_NUMBER"/>
<mx:DataGridColumn headerText="SSN" labelFunction="SSNFormat"
width="85" dataField="PERSON_SSN"/>
<mx:DataGridColumn headerText="Date" labelFunction="showDate"
textAlign="center" width="80" dataField="PERSON_DATE"/>
<mx:DataGridColumn headerText="Status" textAlign="center"
width="50" dataField="PERSON_PERSON_STATUS"/>
</mx:columns>
</mx:DataGrid>
================================================================
And I would like to convert it to Fluorine with as little change as
possible.
Paul
--- In [email protected], "Alex Harui" <[EMAIL PROTECTED]> wrote:
>
> You can pass an array to the datagrid's dp
>
>
>
> ________________________________
>