excludeMethods parameter question

2011-07-25 Thread Mano Pájaro
Hello list! I'm making a research about Struts2 and there are several things that I don't understand (haha), I have studied really hard and I think I'm in the righ way now, but there's a thing that i don't understand about this examples i found about interceptors, i'm talking about the parameter

Re: excludeMethods parameter question

2011-07-25 Thread Maurizio Cucchiara
There are some interceptors, like validator one, which are not triggered in case of the name of the invoked method matches one of the list element (there is no reason to validate an input action, you don't yet obtain the user input, so you have anything to validate). Hope this help. Maurizio

Re: excludeMethods parameter question

2011-07-25 Thread Mano Pájaro
Thanks Maurizio, let me see if i got it straight. You mean that, for example: interceptor-ref name=validation param name=excludeMethodsinput,back,cancel/param/interceptor-ref won't be executed by results whose name is input, back or cancel? 2011/7/25 Maurizio Cucchiara

Re: excludeMethods parameter question

2011-07-25 Thread Chris Pratt
Not exactly. It would not execute for actions whose method name is input, back or cancel. It's on the action side, not the result side. (*Chris*) On Mon, Jul 25, 2011 at 2:59 PM, Mano Pájaro mano0...@gmail.com wrote: Thanks Maurizio, let me see if i got it straight. You mean that, for

Re: excludeMethods parameter question

2011-07-25 Thread Mano Pájaro
I see mm so, it only acts on the action which method attribute is diferent from in the list, that's it? :D 2011/7/25 Chris Pratt thechrispr...@gmail.com Not exactly. It would not execute for actions whose method name is input, back or cancel. It's on the action side, not the result side.

Re: excludeMethods parameter question

2011-07-25 Thread Chris Pratt
Exactly, so the default (execute) would run the validation, but not the ones that are listed. (*Chris*) On Mon, Jul 25, 2011 at 4:53 PM, Mano Pájaro mano0...@gmail.com wrote: I see mm so, it only acts on the action which method attribute is diferent from in the list, that's it? :D

Re: excludeMethods parameter question

2011-07-25 Thread Mano Pájaro
Thank u for everything! I will keep studying! :D -- Manolo Pájaro Santander Ingeniero de Sistemas VIII Semestre (Actual) Promoviendo el Software Libre CUSOL-UAC Linux Registered User # 522026

RE: Parameter question

2008-06-09 Thread Stanley, Eric
. That parameter should only apply to that action/link. -Ryan -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Thursday, June 05, 2008 7:15 PM To: Struts Users Mailing List Subject: Re: Parameter question Are you talking about links to actions having parameters appended? If so

RE: Parameter question

2008-06-09 Thread Stanley, Eric
to append any parameters that are not explicitly coded? -Ryan -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Monday, June 09, 2008 9:18 AM To: Stanley, Eric Subject: RE: Parameter question Okay, then the rest of my reply is probably helpful :) It can be configured

Re: Parameter question

2008-06-09 Thread Lukasz Lenart
Hi, 2008/6/9 Stanley, Eric [EMAIL PROTECTED]: Dave, Thanks. So if I understand you, I can set all my url's that don't use params to excludeParams, but leave the ones that use params alone? Also, where do I set the constant? Im sure its just me, but this doesn't seem like a wise usage

Parameter question

2008-06-05 Thread Stanley, Eric
All, In my app, I have this package/action defined: package name=data extends=struts-default namespace=/data default-interceptor-ref name=paramsPrepareParamsStack / action name=displayData class=fm.gui.action.DataAction result name=success/pages/data/viewData.jsp/result result

Re: Parameter question

2008-06-05 Thread Dave Newton
Are you talking about links to actions having parameters appended? If so, are you either excluding parameters at each s:url... or, alternatively, setting a default excludeParams via config? Dave --- On Thu, 6/5/08, Stanley, Eric [EMAIL PROTECTED] wrote: In my app, I have this

Dynamic parameter question - S2

2007-03-13 Thread Scott Nesbitt
I would like to have a url pass a parameter based on the value of a field on the JSP. My code looks like this: s:url id=historyUrl action=LineupHistory includeParams=all s:param name=foo value=%{barbar}/ /s:url s:a href=%{historyUrl}Lineup History/s:a s:hidden name=barbar value=%{'baz'}/

Re: Dynamic parameter question - S2

2007-03-13 Thread Dave Newton
--- Scott Nesbitt [EMAIL PROTECTED] wrote: I would like to have a url pass a parameter based on the value of a field on the JSP. My code looks like this: Unless the field is set by the Action before displaying the JSP the parameter won't hold a value until it's submitted. s:url

Re: Dynamic parameter question - S2

2007-03-13 Thread Scott Nesbitt
Hmm, I see your point. I do not really need to do any fancy Ajax stuff here, I just want an action invoked by a url link to have access to what was selected on the page (which I was going to stuff into a hidden field.) I know I can do this with a form and submit button, but surely there is a

Re: Dynamic parameter question - S2

2007-03-13 Thread Laurie Harper
For your posted example, where that value you want to pass is the value you're rendering in the hidden field, you can just use the same OGNL expression in both places: ... s:param name=foo value=%{baz}/ ... If that hidden input's field is being changed by client-side Javascript,