I have a parsley popup that can create another popup.
The issue comes when I close the root popup, when I open the popup again and click on the child popup, it's actually opening 2 child popups.
Any idea why this thing happen?
I have already make the reuse='false' and the modal = 'true' for both root and child popup.
Root
<parsley:PopUp open="{presenter.scenarioCreatePopup}" modal="true" center="true" reuse="false" id="hem" >
<views:ScenarioView width="100%" height="100%" id="scenarioView"/>
</parsley:PopUp>
</fx:Declarations>
Child ( ScenarioView )
<fx:Declarations>
<parsley:Configure />
<parsley:PopUp open="{templatePresenter.showTemplatePopup}" modal="true" reuse="false" center="true">
<views:TemplateView width="100%" height="100%" id="templateView"/>
</parsley:PopUp>
<parsley:PopUp open="{tpPresenter.portfolioCreatePopup}" modal="true" reuse="false" center="true">
<views:PortfolioSetupTitleView id="portfolioSetupTitleView"/>
</parsley:PopUp>
</fx:Declarations>