RE: [OT] Sending email from struts

2004-02-11 Thread Nimmons, Buster
We also use the velocity template engine and it has worked like a charm. During initial development we simply sent a Hashmap of variable values to the Template helper class we created ( and created very rudimentary emails for testing) when the system was ready to go into production the end users

how to specify HTML attribute when HTML Tag does not have corrosp onding attribute

2004-02-09 Thread Nimmons, Buster
I'm using the textarea tag in a page, however I need to specify the wrap attribute as hard so text is sent to the server with carriage returns and line feeds in place. Since the TEXTAREA HTML tag does not have a wrap attribute how can I tell it to render the correct html wrap attribute

RE: how to specify HTML attribute when HTML Tag does not have cor rosp onding attribute

2004-02-09 Thread Nimmons, Buster
onding attribute If you need an attribute that isn't supported, you have to subclass the tag class and add that support. And sorry, but no, I haven't tried it yet. --- Nimmons, Buster [EMAIL PROTECTED] wrote: I'm using the textarea tag in a page, however I need to specify the wrap

RE: how to specify HTML attribute when HTML Tag does not have cor rosp onding attribute

2004-02-09 Thread Nimmons, Buster
Not sure about browser specific, but view the properties/attributes section of the MSDN dhtml developer reference there are well over 200 attributes or properties available. Granted this is for all object types but there is still a tremendous gap between what is available and ahat is supported.

RE: how to specify HTML attribute when HTML Tag does not have cor rosp onding attribute

2004-02-09 Thread Nimmons, Buster
care how many attributes you implement in a tag somebody somewhere will need to have something extra written to the HTML stream. -Original Message- From: Nimmons, Buster [mailto:[EMAIL PROTECTED] Sent: Monday, February 09, 2004 3:41 PM To: 'Struts Users Mailing List' Subject: RE: how

RE: Unit Test in struts

2004-01-22 Thread Nimmons, Buster
if the front end to your application is strictly browser based then JavaScript will more than likely play a role in the application. Same as if you were to use a Swing front end you would more than likely have to make use of eventlisteners. When I hear someone say you shouldn't use JavaScript (or

RE: Stateful session bean

2003-12-30 Thread Nimmons, Buster
Even though it seems this is a general J2EE related question it is not. Unlike most, this individual described the entire environment so that we may have a better understanding of the question. Which was, should store reference of business delegate in the HttpSession so that another Action class

Best place to initialize resources in an action class

2003-12-29 Thread Nimmons, Buster
I recently started using strutsin lie of straight servlets and jsps. I was wondering where is the most logical place to perform initialization process in an Action class. In a servlet I normally use the init method to perform these tasks. The closest I have found in the Action class is the