Re: Redirect-Action Problem with struts 2.0.11 and multiple packages

2008-08-11 Thread Lukasz Lenart
> > >greeting.jsp > > > > > > >results >/ > > > You forgot to extends package administration from struts-default. Or you have to define such result for this package.

Redirect-Action Problem with struts 2.0.11 and multiple packages

2008-08-11 Thread DavidCAIT
ut it did not fix the problem. Does anyone have any suggestions? Thanks, David -- View this message in context: http://www.nabble.com/Redirect-Action-Problem-with-struts-2.0.11-and-multiple-packages-tp18927692p18927692.html Sent from

Action Problem ....

2008-03-28 Thread Narayana S
Hi, i am having one link in a page. when i click on the link, i am going to the other page with some request level attribute. in the second page i have one update button, when i press that button, after performing some action and should return back to the 1st page along with same reques

Ajax+Action Problem

2006-11-14 Thread Puneet Lakhina
Hi, I want to populate dependednt drop down boxes using Ajax. I am using dom4j to build the xml response that I want to send. I have the following in My Action. DynaActionForm dynaDropDownForm = (DynaActionForm) form; String selectedVal = (String) dynaDropDownForm.get ("selectedVal");

RE: html: tag four buttons, one action problem

2005-03-24 Thread Paul McCulloch
be relatively easy to use with non dispatch actions with a few changes to the RequestProcessor. HTH, Paul > -Original Message- > From: Scott Purcell [mailto:[EMAIL PROTECTED] > Sent: 23 March 2005 20:59 > To: user@struts.apache.org > Subject: html: tag four buttons, one

Re: html: tag four buttons, one action problem

2005-03-23 Thread Jason King
ttons, one action problem Another thing you could do is use a js onclick handler to change the element's action. // I'm better at the html/js end so you'll have to figure out how to html:submit this. function edit_onclick( oBtn ) { var frm = oBtn.form ; // reference to the

RE: html: tag four buttons, one action problem

2005-03-23 Thread Folashade Adeyosoye
I think with this, you would have multiple JS functions... -Original Message- From: Jason King [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 4:25 PM To: Struts Users Mailing List Subject: Re: html: tag four buttons, one action problem Another thing you could do is use a js

Re: html: tag four buttons, one action problem

2005-03-23 Thread Jason King
Another thing you could do is use a js onclick handler to change the element's action. // I'm better at the html/js end so you'll have to figure out how to html:submit this. function edit_onclick( oBtn ) { var frm = oBtn.form ; // reference to the html form the submit button is in. frm.

Re: html: tag four buttons, one action problem

2005-03-23 Thread Folashade Adeyosoye
I am currently doing the same my project... here is it... it involves using javascript to change the buttonAction 1. must have a hidden field buttonAction 2. each (Button) submit button must have a property 3. when you click on the button the JS is involked and the hidden filed buttonAction is

html: tag four buttons, one action problem

2005-03-23 Thread Scott Purcell
Hello, I have a form, lets say that has a select list on it. Under it I have the ability to [edit], [delete], [modify] or [cancel]. Each of these buttons goes to a different but the form page is set for just one of the actions. And to top this off, I cannot do a href_link, I need to submit th