jai copié collé un code qui fonction pour un popup
mais pour afficher l'autre popup, elle s'affiche pas :
voici le code qui ne fonctionne pas :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
 
protected function TarifsGrid_clickHandler(event:MouseEvent):void
			{
				// TODO Auto-generated method stub
				tarifWindow = new TarifDetailWindow();  
				tarifWindow.addEventListener(Event.CLOSE, tarifWindowCloseHandler);
				tarifWindow.addEventListener("cancel", tarifWindowCloseHandler);
				tarifWindow.tarif = event.target.selectedItem;
				PopUpManager.addPopUp(tarifWindow, this, true);
				PopUpManager.centerPopUp(tarifWindow);
				tarifWindow.setInitialFocus();
			}
et pourtant aucune erreur dans le code