I've made a custom list itemRenderer with 2 buttons and a label. One button deletes the list entry (and thats not the problem) the second button would change the actual view. Does anyone knows how I can change actual view within the itemrenderer ?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
From what I think I understand, you want to change a viewstack or something. What you want to do is bubble an event from the itemRenderer up to a point in the display list where someone will listen and trigger an event handler which then changes the view. So, in your itemRenderer do
And up the display list you need to listen for that even
And in that function just switch your view or whatever else you want. |
|||
|
|
ItemRenderer's state? Modify aViewStack? Show/hide a component? Posting some of your code would probably help us help you. :) – Jason Towne Mar 22 '11 at 15:09