开发者

Adobe Flex PopUpManager -- multiple instances of a TitleWindow opened

开发者 https://www.devze.com 2023-04-08 15:27 出处:网络
Setup:My Flex application is one consisting of several \"subapps\".Basically, the main application area is an ApplicationControlBar with buttons for each of the subapps.The rest of the area is a canva

Setup: My Flex application is one consisting of several "subapps". Basically, the main application area is an ApplicationControlBar with buttons for each of the subapps. The rest of the area is a canvas where the subapps are displayed. Only one subapp is visible at a time. When switching between subapps, we do a canvas.removeAllChildren(), then canvas.addChild(subAppSwitchedTo). It's essentially a manual implementation of a ViewStack (the pros and cons of which are not the topic of this, so refrain from commenting on this).

Problem: In one of my subap开发者_如何学Gops (let's say subapp "A"), I have a search function where results are displayed in a TitleWindow that gets popped up. Workflow is like enter search criteria, click search button, TitleWindow pops up with results (multiple selection datagrid), choose desired result(s), click OK, popup goes away (PopUpManager.removePopUp), and continue working. This all works fine. The problem is if I switch to a different subapp (say "B" -- where A gets removeAllChildren()'d and B gets added), then switch back to A and search again, when the results TitleWindow pops open, there will be TWO stacked on top of each other. If I continue to navigate away and back to A, every time I search, there will be an additional popup in the "stack" of popups (one for each time A gets addChild()'d).

Has anyone else experienced this? I'm not sure what to do about it and it's causing a serious usability bug in my application. Does this ring any bells to anyone? It's like I somehow need to flush the PopUpManager or something (even though I'm correctly calling removePopUp() to remove the TitleWindow). Please help!


EDIT

Flex SDK = 4.5.1

// Subapp "A"
if (!certificateSearchTitleWindow)
{
  certificateSearchTitleWindow = new CertificateSearchTitleWindow;
  certificateSearchTitleWindow.addEventListener("searchAccept", searchOKPopupHandler);
  certificateSearchTitleWindow.addEventListener("searchCancel", searchClosePopupHandler);
}
PopUpManager.addPopUp(certificateSearchTitleWindow, this, true);


My guess is that the popup is removed from the main display list when you remove its parent (this in the PopUpManager.addPopup() method), but not from its parent display list. Why don't you listen, in your subapps, to the Event.REMOVED event, and then remove your popup ? That would be :

private var pp:CertificateSearchTitleWindow;

private function onCreationComplete():void
{
    addEventListener(Event.REMOVED, onRemovede);
}

private function addPopUp():void
{
    if (!pp) {
        pp = new CertificateSearchTitleWindow();
        PopUpManager.addPopUp(pp, this, true);
    }
}

private function onRemoved(event:Event):void
{
    if (pp) {
        PopupManager.removePopUp(pp);
        pp = null;
    }
}


Thank you to those who gave suggestions. It turned out I was re-registering an eventListener over and over.

I am using a singleton to act as "shared memory" between the subapps. I was setting singleton.addEventListener(someType, listener) in subapp A's creationComplete callback. So everytime I navigated back to A, the creationComplete was running and re-adding this listener. After the search, the listener method (that opened the popup) was being called multiple times, i.e., as many times as the event had been added.

xref: http://forums.adobe.com/message/3941163

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号