Hi try this, 1. Create a public variable in popup file, which will store information about the selected row in datagrid. 2. add creation complete event listner function in popup file. 3. in that function you can populate the above thing.
Note : If you are using combobox in popup file, then fill up the data in combobox and then apply selectedIndex property. Thanks, Pradip On Nov 19, 5:19 am, ratna suman bellala <[email protected]> wrote: > hi, > thank for reply.My problem is not with popup window.Example i am > saying when user create one connection those details we are saving in the > database.I am displaying in the datagrid.When he right click on the details > and edit those details are i am showing in the popup but that time i am > trying to display some details in th popup. But it was not displaying > remaining things are working properly but that one not working > Those dropdown details i am displaying dynamically.Let me know is > there any solutions for this kind of problem > > > > On Thu, Nov 17, 2011 at 4:03 PM, bindu madhavi <[email protected]> wrote: > > have u resolved ur problem? > > i think the statement > > PopUpManager.createPopUp(this,Change_ConDetails,true) has to be before the > > PopUpManager.bringToFront(pop9) line and instead of 'this' u have to use > > pop9 in createpopup. > > > Hope that may help. If not please let us know how did u resolved ur > > problem. > > Thanks. > > > On Tue, Nov 15, 2011 at 9:18 PM, ratna suman bellala < > > [email protected]> wrote: > > >> Hi everybody, > > >> I have a problem in dropdown list. I am displaying > >> the dropdown list data dynamically by calling the jsp file through http > >> service. I have a form with this dropdown list first user select the > >> details and saving into the database. When the user click on the saved > >> details one form will display with saved details in popup window that time > >> dropdown list detail are not displaying > > >> But same thing is working fine if I am use the > >> dropdown list with static value. When I am displaying in the popup .I > >> sending the code that I am using in my application . Please can any suggest > >> me to solve this problem. > > >> *` > >> var*pop9:Change_ConDetails=Change_ConDetails(PopUpManager.createPopUp( > >> *this*,Change_ConDetails,*true*)); > > >> pop9.SourceType.text=conDetailsDG.selectedItem.con_DBType; > > >> pop9.ConNam.text=conDetailsDG.selectedItem.DBCon_Name; > > >> pop9.ServNam.text=conDetailsDG.selectedItem.con_ServerName; > > >> pop9.UseNam.text=conDetailsDG.selectedItem.DBCon_UName; > > >> pop9.Pass.text=conDetailsDG.selectedItem.DBCon_PWD; > > >> pop9.Database.text=conDetailsDG.selectedItem.con_DB_Name; > > >> pop9.Schema.text=conDetailsDG.selectedItem.con_SchemaOwner; > > >> pop9.TargDB.selectedIndex= > >> conDetailsDG.selectedItem.con_TargIndex;(Here I am displaying details in > >> the dropdownlist using > > >> http service.It was not working.) > > >> pop9.Port.value=conDetailsDG.selectedItem.con_DB_Port; > > >> PopUpManager.bringToFront(pop9); > > >> pop9.move(450,100); > > >> If I am calling the pop up page it was not diplaying.Is > >> there any other way to display the details in the dropdown list > >> dynamically.I tried to use Remote object services still I am facing same > >> problem. > > >> Regards, > > >> Suman > > >> -- > >> You received this message because you are subscribed to the Google Groups > >> "Flex India Community" group. > >> To post to this group, send email to [email protected]. > >> To unsubscribe from this group, send email to > >> [email protected]. > >> For more options, visit this group at > >>http://groups.google.com/group/flex_india?hl=en. > > > -- > > You received this message because you are subscribed to the Google Groups > > "Flex India Community" group. > > To post to this group, send email to [email protected]. > > To unsubscribe from this group, send email to > > [email protected]. > > For more options, visit this group at > >http://groups.google.com/group/flex_india?hl=en. > > -- > cheers > ratnasuman -- You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/flex_india?hl=en.

