[flexcoders] Re: itemrenderer in datagrid does not refresh

2009-07-01 Thread Tim Hoff
Sorry if this comes through twice. Instead of using the creationComplete and dataChange events, add this to the itemRenderer's script: override public function set data(value:Object):void { super.data = value; if ( value != null ) checkEmail(); } -TH --- In

[flexcoders] Re: itemrenderer in datagrid does not refresh

2009-06-30 Thread kshah0...@ymail.com
I tried it but no luck: Here is the code: ?xml version=1.0 encoding=utf-8? mx:Canvas xmlns:mx=http://www.adobe.com/2006/mxml; width=100% creationComplete=checkEmail() dataChange=checkEmail() mx:states mx:State name=redo mx:RemoveChild