Re: Struts2 getting action's full URL

2008-01-23 Thread Filipe David Manana
Good ideia. I just made the select box submit the form whenever a new option is selected, via the onchange event. The form's target is the same action, with hidden parameters, except for the select box, which targets one of the parameters. Thanks for your suggestions. On 1/23/08, Dave Newton <[EM

Re: Struts2 getting action's full URL

2008-01-23 Thread Dave Newton
--- Filipe David Manana <[EMAIL PROTECTED]> wrote: > Basically I am creating a page that contains a select box. > When the user changes the selected item, it is redirected to an URL. > The value of each item in the select box corresponds to the URL of the > current page but with different values fo

Re: Struts2 getting action's full URL

2008-01-23 Thread Filipe David Manana
Basically I am creating a page that contains a select box. When the user changes the selected item, it is redirected to an URL. The value of each item in the select box corresponds to the URL of the current page but with different values for the action's parameters (passed in the query string). Th

Re: Struts2 getting action's full URL

2008-01-23 Thread Dave Newton
--- Filipe David Manana <[EMAIL PROTECTED]> wrote: > is there anyway to get, from within an Action's code, a string with > the full URL for that action (including query string with current > value of the parameters) ? > I already took a look at ActionSupport, ActionContext and > ActionInvocation ja