Don't know if this works, but try to iterate over the DataGrids columns andset
the cellRenderer, i.e.
for (var i = 0; i < myGrid.columns.length; i++) {
myGrid.getColumnAt(i).cellRenderer = your.class.Name;
}
Dirk.
> -----Original Message-----
> From: dhiren9 [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, March 02, 2005 9:57 AM
> To: [email protected]
> Subject: [flexcoders] Custom cell renderer granularity
>
>
>
>
> My custom cell renderer works when I set it at the <DataGridColumn>
> level, however it does not take effect when I set it for the entire
> <DataGrid> tag.
>
> I don't use the <DataGridColumn> tags since my grid is populated
> using a DataProvider. Am I missing something here? Also, how do I
> modify the column headers to use my custom cell renderer.
>
> Thanks.
>
> -D
>