I think by using an itemrenderer you are taking away the default
ability for the list's "default" renderer to show the icons.

How about taking your icon function code and move it into your item
renderer.  You can do conditionals inside the item renderer code based
on the "data" parameter, which is the single item being rendered in
the renderer.  

if (data.isThing1) { thing1icon.visible = true };
if (data.isThing2) { thing2icon.visible = true };

or something like that?  I'm sure there's a more elegant way, but I
don't want to hear you whine anymore (kidding... the least they could
do was help other than just reply back uselessly)

-- TC


Reply via email to