Re: Popup window

2008-08-08 Thread Frans Thamura
On Sat, Aug 9, 2008 at 3:49 AM, Roger <[EMAIL PROTECTED]> wrote: > On Friday 08 August 2008 07:51:01 Frans Thamura wrote: > > On Fri, Aug 8, 2008 at 9:08 AM, mujoko mujoko > <[EMAIL PROTECTED]>wrote: > > > Dear Struts 2 users > > > > > > > > > I'm trying to create poup window in struts 2, > > > Co

Re: Popup window

2008-08-08 Thread Roger
On Friday 08 August 2008 07:51:01 Frans Thamura wrote: > On Fri, Aug 8, 2008 at 9:08 AM, mujoko mujoko <[EMAIL PROTECTED]>wrote: > > Dear Struts 2 users > > > > > > I'm trying to create poup window in struts 2, > > Could you please to give sample code for this task in struts 2? > > taka a look our

Re: Popup window

2008-08-07 Thread Frans Thamura
On Fri, Aug 8, 2008 at 9:08 AM, mujoko mujoko <[EMAIL PROTECTED]>wrote: > Dear Struts 2 users > > > I'm trying to create poup window in struts 2, > Could you please to give sample code for this task in struts 2? > > taka a look our cimande project http://www.sf.net/projects/cimande we use a lot

Re: Popup window with session param

2007-10-02 Thread Wes Wannemacher
This may be a dumb question, but if it's a session attribute, why pass it as a request parameter? Can't you just pull it from the session in the target action? -Wes On 10/2/07, Diego Ezquerro <[EMAIL PROTECTED]> wrote: > Hi to everybody. > > I have a problem with a JSP page, I think this is a stu

Re: popup window

2006-04-06 Thread fea jabi
oh ok. got it. Thank you very much for your response. From: "Frank W. Zammetti" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: "Struts Users Mailing List" CC: user@struts.apache.org Subject: Re: popup window Date: Thu, 6 Apr 2006 13:57:02 -0

Re: popup window

2006-04-06 Thread Frank W. Zammetti
; redirect="false"/> > > > >>From: "Frank W. Zammetti" <[EMAIL PROTECTED]> >>Reply-To: "Struts Users Mailing List" >>To: "Struts Users Mailing List" >>CC: user@struts.apache.org >>Subject: Re: popup window >

Re: popup window

2006-04-06 Thread fea jabi
instead of should I do > onLoad="window.close();">" redirect="false"/> From: "Frank W. Zammetti" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: "Struts Users Mailing List" CC: user@struts.apache.org Sub

Re: popup window

2006-04-06 Thread Frank W. Zammetti
rom: "Frank W. Zammetti" <[EMAIL PROTECTED]> >>Reply-To: "Struts Users Mailing List" >>To: "Struts Users Mailing List" >>CC: user@struts.apache.org >>Subject: Re: popup window >>Date: Thu, 6 Apr 2006 12:22:29 -0400 (EDT) >> >&

Re: popup window

2006-04-06 Thread fea jabi
;Struts Users Mailing List" To: "Struts Users Mailing List" CC: user@struts.apache.org Subject: Re: popup window Date: Thu, 6 Apr 2006 12:22:29 -0400 (EDT) Firstly, there is a Wiki page that may or may not be helpful: http://wiki.apache.org/struts/OpenWindowFromAction On Thu, Apri

Re: popup window

2006-04-06 Thread Frank W. Zammetti
Firstly, there is a Wiki page that may or may not be helpful: http://wiki.apache.org/struts/OpenWindowFromAction On Thu, April 6, 2006 10:24 am, fea jabi said: > want to open a popup window when the user clicks on a button. how to do > that? > do not want to update any fields when the window is c

Re: Popup window submitting to action

2005-01-27 Thread bala pamarti
Brandon, I was looking for the same functionality in my application. Can you please post your code/sample code. TIA, Bala --- --- Brandon Mercer <[EMAIL PROTECTED]> wrote: > Hello, > I've got a slighty off topic question for the group. > I've got a pop-up > window that I use in my applicatio

RE: Popup window submitting to action

2005-01-27 Thread David Suarez
..djsuarez -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, January 27, 2005 9:56 AM To: user@struts.apache.org Subject: Re: Popup window submitting to action reload()... cool, didn't see that in my reference book. Everyone learns somethin

Re: Popup window submitting to action

2005-01-27 Thread fzlists
reload()... cool, didn't see that in my reference book. Everyone learns something new every day! :) (sure seemed like something that would be there, glad to know I just missed it) -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com On Thu, Jan

Re: Popup window submitting to action

2005-01-27 Thread fzlists
Well, you could either (a) create a form with an action of billpay.do and submit it, or (b) you could do parent.location="billpay.do". That should essentially do a refresh. I'm not aware of any refresh method, unless you are OK with IE-only code... IE has a number of "commands", as they are ca

Re: Popup window submitting to action

2005-01-27 Thread Brandon Mercer
Cedric Levieux wrote: Here what you want in the page retrieved after the submit action and reached via this action :