On 4/16/07, zzberthod <[EMAIL PROTECTED]> wrote: > I just need to insert graphical elements (ex: MXML checkbox) into the > list. > > Example: > - The first column is a checkbox (for selection of the line) > - The second is the `name' column > - Third is `date' > > ---------------------------------------------- > |Select | Name | Date > ---------------------------------------------- > | X | Justin | 01/12/07 > | | Martin | 01/15/07 > | X | John | 01/17/07 > ----------------------------------------------
You can specify an ItemRenderer when you declare your DataGrid's columns, which can customize the appearance of a column's content. An example using ItemRenderers: <http://www.cflex.net/showFileDetails.cfm?ObjectID=443&ChannelID=1> Once you've played with it, read this for caveats: <http://blogs.adobe.com/aharui/2007/03/thinking_about_item_renderers_1.html> e

