Re: vs. onclick result

2004-11-10 Thread Ben Anderson
Lori, notice I took this to the struts list. The struts tags don't support runtime expressions. There is a subset of struts tags that supports EL (expression language). You might try the following approach: However, it'd be even better if you didn't need the first line. There are times when

Re: Validation and data display

2004-10-28 Thread Ben Anderson
You can turn off declaritve validation. Then put the validation in your Action.execute and do whatever you want: ActionMessages am = form.validate( mapping, request ); if( am.size() != 0 ){ -Ben Quoting Tate Austin <[EMAIL PROTECTED]>: > I have a page in which I would like to di

[OT] Re: Request parameters not making it to Actions?

2004-10-22 Thread Ben Anderson
Possibly many of you already have your own approaches for seeing what's actually transmitted over the wire, but if you don't - check out the LiveHTTPHeaders extension to Firefox - I love it! - To unsubscribe, e-mail: [EMAIL PROTEC

validateTwoFields

2004-10-06 Thread Ben Anderson
Hi all, I'm trying to use this custom validate method. I got the instructions from Matt Raible's site (thanks Matt ;-)): http://www.raibledesigns.com/page/rd/20030226 I remember this used to work, but now it's not. I'm using Struts 1.2.4 and commons-validator 1.1.3. I've been playing with it a