yes, but there's no updateDisplayList in parent DataGridItemRenderer class Which else method can i override to draw graphics and use valid with and height?
--- In [email protected], "valdhor" <valdhorli...@...> wrote: > > As I understand it, there is no backgroundColor style. What I did was > use a graphic fill: > > override protected function > updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void > { > super.updateDisplayList(unscaledWidth, unscaledHeight); > var g:Graphics = graphics; > g.clear(); > g.beginFill(0xBBBBBB); > g.drawRect(0, -2, unscaledWidth, unscaledHeight + 4); > g.endFill(); > } > >

