Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a list ItemRenderer that has 2 states. When it initializes, I set it to 1 state and listen for an event that switches it to state 2.

protected function onCreationComplete(event:FlexEvent):void{
   currentState = "state1";
   addEventListener(CustomEvent.Event1, switcherfunc);
}

protected function switcherfunc(event:FlexEvent):void{
   currentState = "state2";
}

The difference between the 2 states is that I hide/show some labels.

The problem is that it doesn't work. I still see the visual of the old state, even though if I Alert.show(currentState), it shows the correct state name.

I've tried adding the line invalidateDisplayList(); inside the switch function but still no luck.

protected function switch(event:FlexEvent):void{
   currentState = "state2";
   invalidateDisplayList();
}

What am I doing wrong. Any ideas how I can get this ItemRenderer to really update?

share|improve this question
1  
Are you using switch as a function name - it's a reserved keyword - this shouldn't even compile. – Amarghosh Jun 7 '10 at 6:55
It's a fictitious name just to demonstrate. My function is something else. – duder Jun 7 '10 at 12:16
Can you provide us some runnable code? What event does your 'switch' handler listen for? Are you sure the event handler is firing? Are you listening to the DataChange event to accommodate for renderer recycling? – Reboog711 Jun 7 '10 at 13:14
@Flextras, I'll try to produce a runnable reduced sample. Will post back soon. – duder Jun 7 '10 at 16:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.