Re: Why does update action fire on load

2007-10-29 Thread zul;jami
gt; >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> zul;jami wrote: >>>>>>>>>> >>>>>>>>>> I have two methods in action extending actionsupport in struts2. >>>>>>>>>> WHen I login it should execute only the execute method.BUT >>>>>>>>>> it also fires update another method which I want to call some >>>>>>>>>> other time. >>>>>>>>>> >>>>>>>>>> THis is my struts.xml >>>>>>>>>> ** >>>>>>>>>> >>>>>>>>>>login.jsp >>>>>>>>>>login.jsp >>>>>>>>>>/pages/main.jsp >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> /pages/dashboard.jsp >>>>>>>>>> >>>>>>>>>> *** >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> Piero Sartini-3 wrote: >>>>>>>>>>> >>>>>>>>>>> Am Montag, 22. Oktober 2007 13:23:38 schrieb zul;jami: >>>>>>>>>>>> Still I am getting the error, >>>>>>>>>>>> my execute also fires update on load. >>>>>>>>>>>> There is no img tag with empty src attribute >>>>>>>>>>> >>>>>>>>>>> execute() is triggered when the action is called, not only when >>>>>>>>>>> you submit >>>>>>>>>>> your data. >>>>>>>>>>> >>>>>>>>>>> Piero >>>>>>>>>>> >>>>>>>>>>> - >>>>>>>>>>> To unsubscribe, e-mail: [EMAIL PROTECTED] >>>>>>>>>>> For additional commands, e-mail: [EMAIL PROTECTED] >>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>> >>>>> >>>> >>>> >>> >>> >> >> > > -- View this message in context: http://www.nabble.com/Why-does-update-action-fire-on-load-tf4670323.html#a13482612 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Why does update action fire on load

2007-10-26 Thread Igor Vlasov
;> >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> zul;jami wrote: >>>>>>>>> >>>>>>>>> I have two methods in action extending actionsupport in struts2. >>>>>>>>> WHen I lo

Re: Why does update action fire on load

2007-10-26 Thread zul;jami
lso fires update another method which I want to call some other >>>>>>>> time. >>>>>>>> >>>>>>>> THis is my struts.xml >>>>>>>> ** >>>>>>>> >>>>>>>

Re: Why does update action fire on load

2007-10-26 Thread Igor Vlasov
gt;>> >>>>>>> login.jsp >>>>>>>login.jsp >>>>>>>/pages/main.jsp >>>>>>> >>>>>>> >>>>>>> /pages/dashboard.jsp >>>>>>> >>>>>>> *** >>>>>>> >>>>>>> >>>>>>> Piero Sartini-3 wrote: >>>>>>>> >>>>>>>> Am Montag, 22. Oktober 2007 13:23:38 schrieb zul;jami: >>>>>>>>> Still I am getting the error, >>>>>>>>> my execute also fires update on load. >>>>>>>>> There is no img tag with empty src attribute >>>>>>>> >>>>>>>> execute() is triggered when the action is called, not only when you >>>>>>>> submit >>>>>>>> your data. >>>>>>>> >>>>>>>>Piero >>>>>>>> >>>>>>>> - >>>>>>>> To unsubscribe, e-mail: [EMAIL PROTECTED] >>>>>>>> For additional commands, e-mail: [EMAIL PROTECTED] >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>> >>>>>>> >>>>>> >>>>>> >>>>> >>>>> >>>> >>>> >>> >>> >> >> > > -- View this message in context: http://www.nabble.com/Why-does-update-action-fire-on-load-tf4670323.html#a13423587 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Why does update action fire on load

2007-10-26 Thread zul;jami
gt;>>>> time. >>>>>> >>>>>> THis is my struts.xml >>>>>> ** >>>>>> >>>>>>login.jsp >>>>>>login.jsp >>>>>>/pages/main.jsp >>>>>> >>>>>> >>>>>>

Re: Why does update action fire on load

2007-10-26 Thread Igor Vlasov
ard.jsp >>>>> >>>>> *** >>>>> >>>>> >>>>> Piero Sartini-3 wrote: >>>>>> >>>>>> Am Montag, 22. Oktober 2007 13:23:38 schrieb zul;jami: >>>>>>> Still I am getting the error, >>>>>>> my e

Re: Why does update action fire on load

2007-10-26 Thread zul;jami
ini-3 wrote: >>>>> >>>>> Am Montag, 22. Oktober 2007 13:23:38 schrieb zul;jami: >>>>>> Still I am getting the error, >>>>>> my execute also fires update on load. >>>>>> There is no img tag with empty src attribu

Re: Why does update action fire on load

2007-10-26 Thread Igor Vlasov
>>> There is no img tag with empty src attribute >>>> >>>> execute() is triggered when the action is called, not only when you >>>> submit >>>> your data. >>>> >>>>Piero >>>> >>>>

Re: Why does update action fire on load

2007-10-26 Thread zul;jami
t only when you >>> submit >>> your data. >>> >>> Piero >>> >>> ----- >>> To unsubscribe, e-mail

Re: Why does update action fire on load

2007-10-26 Thread Igor Vlasov
ecute() is triggered when the action is called, not only when you >> submit >> your data. >> >> Piero >> >> - >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> >>

Re: Why does update action fire on load

2007-10-25 Thread zul;jami
] > > > -- View this message in context: http://www.nabble.com/Why-does-update-action-fire-on-load-tf4670323.html#a13402904 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Why does update action fire on load

2007-10-23 Thread Piero Sartini
Am Montag, 22. Oktober 2007 13:23:38 schrieb zul;jami: > Still I am getting the error, > my execute also fires update on load. > There is no img tag with empty src attribute execute() is triggered when the action is called, not only when you submit your data. Piero -

Why does update action fire on load

2007-10-22 Thread zul;jami
Still I am getting the error, my execute also fires update on load. There is no img tag with empty src attribute -- View this message in context: http://www.nabble.com/Why-does-update-action-fire-on-load-tf4670323.html#a13341641 Sent from the Struts - User mailing list archive at Nabble.com

FW: Why does update action fire on load

2007-10-22 Thread abdul jabbar zul jami
login,it calls execue and update as well.I will check for img tag with an empty src attribute as u have told.If you get any idea pls helpregardsZul Jami> To: user@struts.apache.org> From: [EMAIL PROTECTED]> Subject: Re: Why does update action fire on load> Date: Mon, 15 Oct 2007 16

Re: Why does update action fire on load

2007-10-15 Thread Laurie Harper
zul;jami wrote: I am using struts2+spring+jpa+ajax+sitemesh WHile onload only execute method should be called, but update is also called.Why this is my struts.xml login.jsp login.jsp /pages/dashboard_main.jsp /pages/dashboard.jsp This is just a g

Why does update action fire on load

2007-10-10 Thread zul;jami
context: http://www.nabble.com/Why-does-update-action-fire-on-load-tf4600249.html#a13134063 Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail