I am getting two compile errors:
1023: Incompatible override.
1144: Interface method set data in namespace mx.core:IDataRenderer is 
implemented with an incompatible signature in class 
yardmodel.modulecode:reassignedBlock.

--- In [email protected], "Ryan Gravener" <[EMAIL PROTECTED]> wrote:
>
> Well, you are in luck.  I just did this a few hours ago and it 
worked.  Put
> this method:
> 
> 
> override public function set data(value:Object) {
> super.data = value;
> //do stuff
> }
> 
> in your Custom renderer.  The variable data will be the column.
> 
> 
> Ryan Gravener
> http://twitter.com/ryangravener
> 
> 
> On Sun, Oct 5, 2008 at 10:09 PM, markgoldin_2000
> <[EMAIL PROTECTED]>wrote:
> 
> >   Not sure how that helps me, maybe I wasn't clear in my 
question. I
> > need to get header text when I am using a custom renderer for
> > column's header.
> >
> >
> > --- In [email protected] <flexcoders%
40yahoogroups.com>, "Ryan
> > Gravener" <ryan@> wrote:
> > >
> > > So long as your using advanceddatagridcolumn you can do
> > > headerRenderer="com.yourcompany.package.ExtendsVBox"
> > >
> > > and in ExtendsVBox
> > >
> > > override public function set data(value:Object) {
> > > super.data = data;
> > > //do stuff
> > > }
> > >
> > > Ryan Gravener
> > > http://ryangravener.com/flex
> > >
> > >
> > > On Sun, Oct 5, 2008 at 7:26 PM, markgoldin_2000
> > > <markgoldin_2000@>wrote:
> > >
> > > > columns[columnIndexValue].headerText returns header's text.
> > > > How do I get it if I use a custom (VBox) header renderer?
> > > >
> > > > Thanks
> > > >
> > > >
> > > >
> > >
> >
> >  
> >
>


Reply via email to