Santhosh Nayak
Santhosh Nayak

Reputation: 2288

How to create and use popup window in flex 3?

I have used a datagrid and one button in control bar. by clicking button the application goes edit state from base state. My question is how can i use popup for editing selected record of datagrid instead of changing state. please give me any example with code that describe how pop ups can be used in flex 3 application.

Upvotes: 0

Views: 3595

Answers (1)

Santhosh Nayak
Santhosh Nayak

Reputation: 2288

I got answer for above problem. First we have to create custom component for popup named MyPopup

And in application:

import components.popups.MyPopup;
public var pop:MyPopup;
public function Show_Pop():void
            {

             pop= PopUpManager.createPopUp(this,MyPopup,true)  as MyPopup;
             PopUpManager.centerPopUp(pop);

             }

calling function:

<mx:Button  click="Show_Pop()" id="btn1" label="show Popup"/>

Upvotes: 1

Related Questions