Struts Plugin Help to Data Drive Tiles

2006-05-17 Thread Justin Moore
Hi I need some help - maybe a personal excerpt or a resource on the web (document or book) that can talk about extending struts to load tiles definitions from a database. I assume that because this is an extensoin point, I will be doing this via a plugin. Tiles by default has a RuleSet that u

RE: Re: test - Found word(s) remove list in the Text body

2005-02-18 Thread Justin Moore
Done. Thanks. -Original Message- From: Nic Werner [mailto:[EMAIL PROTECTED] Sent: Friday, February 18, 2005 12:46 PM To: Struts Users Mailing List Subject: [SPAM] - Re: test - Found word(s) remove list in the Text body Please remove Read Notification when you post to this list. Justin

DispatchActions

2005-02-18 Thread Justin Moore
Hello Everyone, I have a question about linking DispatchActions. I have two DispatchActions (Action1 and Action2). Both Actions have the same method signatures that look like this: -- public class Action1 e

test

2005-02-18 Thread Justin Moore
test - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Linking DispatchActions

2005-02-18 Thread Justin Moore
Hello Everyone, I have a question about linking DispatchActions. I have two DispatchActions (Action1 and Action2). Both Actions have the same method signatures that look like this: -- public class Action1 e

RE: html:select drop downs using LabelValueBean

2005-01-26 Thread Justin Moore
: html:select drop downs using LabelValueBean From: "Justin Moore" <[EMAIL PROTECTED]> > I am havnig problems with the LabelValueBean in a drop down that is suppose to show the months. > I need to display the labels as strings (ex: Jan, Feb, etc). I need to display their r

html:select drop downs using LabelValueBean

2005-01-25 Thread Justin Moore
Hi, I am havnig problems with the LabelValueBean in a drop down that is suppose to show the months. I need to display the labels as strings (ex: Jan, Feb, etc). I need to display their respective values as ordinals. When executing the code below, a JSP exception is thrown, tellinng me: "cann

RE: ActionMessages

2005-01-18 Thread Justin Moore
properties files have something like: errors.dynamic={0} and in your ActionError instance pass in, "errors.dynamic" along with your dynamic error message. Steven -Original Message- From: Justin Moore [mailto:[EMAIL PROTECTED] Sent: Tue 1/18/2005 5:07 PM

ActionMessages

2005-01-18 Thread Justin Moore
Anyone know how to pass errors from your Action to your JSP without having to use the resource file / ActionMessage combination. Basically I need to pass a dynamically generated error message to the jsp. Your help is appreciated. -Justin ---