Hi all
I have one component to show one list of movies using DataGrid.....the
source is like that:
<mx:DataGrid id="grdMovies" height="199" dataTipField="synopsis"
click="detailMovie()" dataProvider="{model.listMovies}" top="231"
left="10" width="95%">
<mx:columns>
<mx:DataGridColumn showDataTips="true" headerText="Title"
dataField="title"/>
<mx:DataGridColumn headerText="Director" dataField="director"
labelFunction="showDirectorName"
sortCompareFunction="ordenarPorDirector"/>
<mx:DataGridColumn headerText="Main Actor" dataField="mainActor"
labelFunction="showActorName"/>
<mx:DataGridColumn headerText="Year" dataField="movieYear"/>
</mx:columns>
</mx:DataGrid>
My result is succes, but i would like to use one repeater and see the
posibilities o this component....
If someone can give me some advices or some examples.....Please....see
that my DataGridColumn have some labelFunction and dataField and i would
like to have using the repeater.
Thanks in advance.