Re: Passing data from Dialog Box

2011-04-05 Thread Alexandre Ardhuin
If you use a com.google.gwt.user.client.ui.DialogBox to collect data. Thus you are still in the same window. Alexandre 2011/4/5 Mittal mitt...@gmail.com I have following use case, Master Form - has button called Add Row - that shall open Dialog Box to collect data, lets say First Name ,

Re: Passing data from Dialog Box

2011-04-05 Thread Juan Pablo Gardella
You can use EventBus 2011/4/4 Mittal mitt...@gmail.com I have following use case, Master Form - has button called Add Row - that shall open Dialog Box to collect data, lets say First Name , Last Name etc. When Dialog Box is closed or based on some other event how to I send this data

Re: Passing data from Dialog Box

2011-04-05 Thread Mittal
Can you share any examples - how you are sending data back from Dialog Box to window that opened dialog box. Mittal On Apr 5, 3:11 am, Alexandre Ardhuin alexandre.ardh...@gmail.com wrote: If you use a com.google.gwt.user.client.ui.DialogBox to collect data. Thus you are still in the same

Re: Passing data from Dialog Box

2011-04-05 Thread Juan Pablo Gardella
See this post: http://stackoverflow.com/questions/3162399/gwt-confirmation-dialog-box 2011/4/5 Mittal mitt...@gmail.com Can you share any examples - how you are sending data back from Dialog Box to window that opened dialog box. Mittal On Apr 5, 3:11 am, Alexandre Ardhuin

Passing data from Dialog Box

2011-04-04 Thread Mittal
I have following use case, Master Form - has button called Add Row - that shall open Dialog Box to collect data, lets say First Name , Last Name etc. When Dialog Box is closed or based on some other event how to I send this data captured to parent window that opened Dialog Box ? This operation of