Popup window

2004-02-16 Thread Daniel
There are some example of creating a popup window, for select (of datagrid for example )one value and come back to the window with the value selected with Struts. tnks Daniel S.

Re: Popup window

2004-02-16 Thread Jim Theodoridis
- From: Daniel [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, February 16, 2004 4:24 PM Subject: Popup window There are some example of creating a popup window, for select (of datagrid for example )one value and come back to the window with the value selected

Re: Popup window

2004-02-16 Thread Daniel
Muito obrigado (so much thanks) Jim Theodoridis. - Original Message - From: Jim Theodoridis [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Monday, February 16, 2004 11:05 AM Subject: Re: Popup window Hi This is the chooseAuthor.jsp. When U choose an author

passing value to and from popup window HELP

2003-01-29 Thread Ashish Kulkarni
Hi, I have to do the following When a user clicks on a link, I want to open a jsp in new window , i want to pass some parameters to this jsp, which i am doing by using html:link href=_blank onclick=javascript:popup() Click here /html:link But now i want to get value back from the popup window

RE: passing value to and from popup window HELP

2003-01-29 Thread Jarnot Voytek Contr AU HQ/SC
Your second requirement will require refreshing the first page no matter how much you are against it. For your first one, just write a javascript function on the first page and call it from the popup window as such: opener.setSomeValue('whatever'); -- Voytek Jarnot Quidquid latine dictum sit

Re: passing value to and from popup window HELP

2003-01-29 Thread Puneet Agarwal
popup window HELP Your second requirement will require refreshing the first page no matter how much you are against it. For your first one, just write a javascript function on the first page and call it from the popup window as such: opener.setSomeValue('whatever'); -- Voytek Jarnot Quidquid

Re: passing value to and from popup window HELP

2003-01-29 Thread Ashish Kulkarni
Hi Do u have an example of this remote scripting stuff, I was able to get the first thing working of setting the parameters from popup window to the main window by using document.opener Also how will i come to know in my main window when the popup window is closed and it has passes some value

Re: passing value to and from popup window HELP

2003-01-29 Thread Puneet Agarwal
PROTECTED]; Puneet Agarwal [EMAIL PROTECTED] Sent: Wednesday, January 29, 2003 7:55 PM Subject: Re: passing value to and from popup window HELP Hi Do u have an example of this remote scripting stuff, I was able to get the first thing working of setting the parameters from popup window to the main

popup window

2003-01-02 Thread Amit Badheka
Hi All, Is there any way to open new window from the action class. I have a requirement like when one from is submitted I have to pass values of that from to another jsp that will open in new window. please help. AB.

RE: popup window

2003-01-02 Thread du Plessis, Corneil C
: popup window Hi All, Is there any way to open new window from the action class. I have a requirement like when one from is submitted I have to pass values of that from to another jsp that will open in new window. please help. AB. __ Disclaimer

Re: popup window

2003-01-02 Thread Puneet Agarwal
Did _blank not work ? or is it that you want response in both of the windows ? Regards Puneet - Original Message - From: Amit Badheka [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Thursday, January 02, 2003 9:26 AM Subject: popup window Hi All, Is there any

Re: popup window

2003-01-02 Thread Amit Badheka
Hi Puneet, It works fine, but my problem is that I am using templates. So, in the popup window whole template is displaying rather than a single jsp. Also, one more problem is that popup jsp contains a tree. so when we try to explore the tree structure on each event it calls same action

Re: popup window

2003-01-02 Thread Puneet Agarwal
] Sent: Thursday, January 02, 2003 12:18 PM Subject: Re: popup window Hi Puneet, It works fine, but my problem is that I am using templates. So, in the popup window whole template is displaying rather than a single jsp. Also, one more problem is that popup jsp contains a tree. so when we try

RE: popup window

2003-01-02 Thread ROSSEL Olivier
If you want to open a new window when submitting a form you will have to set the target of the html:form or form using _blank will launch a new window. Newbie question: can you make this new window a modal window? can this window appear when you click the Select (submit) button, but not

submit form from popup window to parent window

2002-08-26 Thread jeffrey . reid
Hi all, I have a form that appears in a popup window (created via a call to IE's showModalDialog()), that I would like to submit back to the parent window. The target attribute on the html:form tag only seems to allow you to specify which frame you want to submit to, not which window. Does

RE: submit form from popup window to parent window

2002-08-26 Thread Galbreath, Mark
Jeff, See the documentation for window.opener. opener is a reference to the spawning window from the popup. Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 9:25 AM I have a form that appears in a popup window (created via

RE: submit form from popup window to parent window

2002-08-26 Thread jeffrey . reid
Mark, Thanks for your help. In looking for documentation on window.opener I came across a couple of articles/posts that led me to my solution. What I do is use window.open() instead of showModalDialog() to create the popup. This allows me to submit my struts form to the popup window (I had

RE: submit form from popup window to parent window

2002-08-26 Thread Galbreath, Mark
My pleasure dude! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, August 26, 2002 2:53 PM To: [EMAIL PROTECTED] Subject: RE: submit form from popup window to parent window Mark, Thanks for your help. In looking for documentation on window.opener I

Re: Popup window, parent update, best practice

2002-06-25 Thread Daniel Jaffa
;) - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 24, 2002 2:37 PM Subject: RE: Popup window, parent update, best practice The Browser is the one that performs the logic to display what request where. When you tell it to open a new window you

Popup window, parent update, best practice

2002-06-24 Thread Roland Chan
Hello, I've searched the archives and have come up with some different approaches but none really match my requirements. Let's say I have Window 'A' which contains a list of clients. There is a button to add a new client which pops up Window 'B'. The user can enter new client information in

Re: Popup window, parent update, best practice

2002-06-24 Thread Mark Nichols
- Original Message - From: Roland Chan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 24, 2002 12:02 PM Subject: Popup window, parent update, best practice Hello, I've searched the archives and have come up with some different approaches but none really match my

RE: Popup window, parent update, best practice

2002-06-24 Thread Roland Chan
scenario. At any rate, I thought I'd throw it out there... -Original Message- From: Mark Nichols [mailto:[EMAIL PROTECTED]] Sent: June 24, 2002 2:08 PM To: Struts Users Mailing List Subject: Re: Popup window, parent update, best practice - Original Message - From: Roland Chan [EMAIL

RE: Popup window, parent update, best practice

2002-06-24 Thread wbchmura
To: struts-user Subject: Re: Popup window, parent update, best practice - Original Message - From: Roland Chan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 24, 2002 12:02 PM Subject: Popup window, parent update, best practice Hello, I've searched the archives and have

RE: redirect html:errors to popup window

2002-02-09 Thread Arik Levin ( Tikal )
PROTECTED] Subject: redirect html:errors to popup window Any suggestions on how to redirect html:errors/ output to a popup window rather than the page that the form is located on? Thanks, Jim Canter -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: redirect html:errors to popup window

2002-02-08 Thread Steve Earl
PROTECTED]] Sent: Friday, February 08, 2002 2:06 AM To: Struts Users Mailing List Subject: Re: redirect html:errors to popup window redirect html:errors to popup windowThe only way I think you could do this is via JavaScript ... you could use this tag set: logic:messagesPresent ... /logic:messagesPresent

redirect html:errors to popup window

2002-02-07 Thread jcanter
Any suggestions on how to redirect html:errors/ output to a popup window rather than the page that the form is located on? Thanks, Jim Canter -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]