This content has been marked as final.
Show 3 replies
-
1. Re: Item renderer on DataGrid (not DataGridColumn)
paul.williams Sep 6, 2009 12:06 PM (in response to Andy Kirkham)A code example would be helpful here, but from your error message it
looks like you may be doing the following
<mx:DataGrid itemRenderer="comp:CellRenderer"/>
Instead of this, you need to use the fully qualified class name of
CellRenderer, eg.
com.renderers.CellRenderer
Look at the definition of 'comp' towards the top of your MXML file, it
will be something like:
xmlns:comp="blah.blah.blah.*"
Your itemRenderer property should then be set to:
blah.blah.blah.CellRenderer
-
2. Re: Item renderer on DataGrid (not DataGridColumn)
Andy Kirkham Sep 6, 2009 12:29 PM (in response to paul.williams)Excellent! That seems to be the answer. Thanks
Andy
-
3. Re: Item renderer on DataGrid (not DataGridColumn)
Delcasda Aug 17, 2014 3:54 PM (in response to paul.williams)4 years later this solve my problem with a spark renderer


