RE: Displaying Content only if form errors are present

2004-03-23 Thread Irving, Dave
logic:messagesPresent ? -Original Message- From: Christoph Kutzinski [mailto:[EMAIL PROTECTED] Sent: 23 March 2004 17:51 To: Struts Users Mailing List Subject: Displaying Content only if form errors are present Hi, I'm trying to display a piece of HTML only if the previous form submit

RE: Can coarse grained ActionForms validate?

2004-03-19 Thread Irving, Dave
Are you using the validator framework? If you are, you can associate different validation rules with different actions for the same form (use DynaValidatorActionForm). Have a look at the documentation - it'll explain how to set it up. D -Original Message- From: Chan, Jim [mailto:[EMAIL

RE: Thread Safe Action

2004-03-12 Thread Irving, Dave
broadly speaking, yes. -Original Message- From: Joao Batistella [mailto:[EMAIL PROTECTED] Sent: 12 March 2004 12:53 To: 'Struts Users Mailing List' Subject: Thread Safe Action Hello. I read that an Action in struts can be shared among another requests. This means that we shouldn't use

Removing business logic from Actions

2004-02-26 Thread Irving, Dave
Hi all, Ive seen quite a few web applications employing Struts where business logic is bolted straight in to Action classes. While not-so-bad for small projects, this obviously can 'get out of hand' for large applications - leading to poor maintainability, dependency on the web tier etc etc. So,