Just remember another solution:
Regarding performance issues probably the fastest way is to don't use any
itemRenderers.
So if it works in your scenario you may go with this:

public class MySuperVO
{
   public var path:String;
   public var assetPath:String;
        
   // Getter that returns the path depending on custom conditions
   public function get currentPath():string {
      return assetPath!=""?assetPath:path;           
   }
}

// Will invoke our getter
<column id="currentPath"/>

HTH,
Olaf




--
View this message in context: 
http://apache-flex-users.2333346.n4.nabble.com/Custom-itemrenderer-doesn-t-show-data-tp12269p12276.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Reply via email to