[OT] Re: Every action is getting called twice

2009-03-02 Thread Dave Newton
VenuGopalArkala wrote: if ur using and in js ur giving function formSubmit(){ document.populationSetForm.addNewR.value = ''; form.submit(); // this is the problem } Instead of form.submit() give return true; // ur problem will be solved O_o

Re: Every action is getting called twice

2009-03-02 Thread VenuGopalArkala
t; From: "Charbel Abdul-Massih" > To: > Sent: Tuesday, February 12, 2008 2:53 AM > Subject: Every action is getting called twice > > > What am I doing wrong? Every request to an action goes into the actions' > execute method twice... > > I am sure th

Re: Every action is getting called twice

2008-02-11 Thread Prajapati Manish
]> To: Sent: Tuesday, February 12, 2008 2:53 AM Subject: Every action is getting called twice What am I doing wrong? Every request to an action goes into the actions' execute method twice... I am sure that I am returning SUCCESS from the action, and is mapped to a valid J

Re: Every action is getting called twice

2008-02-11 Thread Laurie Harper
---Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Monday, February 11, 2008 4:26 PM To: Struts Users Mailing List Subject: Re: Every action is getting called twice --- Charbel Abdul-Massih <[EMAIL PROTECTED]> wrote: What am I doing wrong? Every request to an action go

Re: Every action is getting called twice

2008-02-11 Thread Van Riper
On 2/11/08, Charbel Abdul-Massih <[EMAIL PROTECTED]> wrote: > What am I doing wrong? Every request to an action goes into the actions' > execute method twice... This is going to sound unrelated, but, do you use Firefox browser with Firebug enabled to test your code. I ran into one weird problem

RE: Every action is getting called twice

2008-02-11 Thread Wes Wannemacher
, and if true, calls > > Return actionInvocation.invoke(); > > Does this help any??? > > > -Original Message- > From: Dave Newton [mailto:[EMAIL PROTECTED] > Sent: Monday, February 11, 2008 4:26 PM > To: Struts Users Mailing List > Subject: Re: Every action is getting c

RE: Every action is getting called twice

2008-02-11 Thread Charbel Abdul-Massih
Does this help any??? -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Monday, February 11, 2008 4:26 PM To: Struts Users Mailing List Subject: Re: Every action is getting called twice --- Charbel Abdul-Massih <[EMAIL PROTECTED]> wrote: > What am I doing wrong?

Re: Every action is getting called twice

2008-02-11 Thread Dave Newton
--- Charbel Abdul-Massih <[EMAIL PROTECTED]> wrote: > What am I doing wrong? Every request to an action goes into the actions' > execute method twice... > > I am sure that I am returning SUCCESS from the action, and is mapped to a > valid JSP. You are not providing enough information for anybod

Every action is getting called twice

2008-02-11 Thread Charbel Abdul-Massih
What am I doing wrong? Every request to an action goes into the actions' execute method twice... I am sure that I am returning SUCCESS from the action, and is mapped to a valid JSP. Thanks, Charbel