Re: Know of any good custom tag tutorials for struts 2?

2007-09-13 Thread kkjacks
my ActionForm like this... <% List invoiceLevels = invoiceForm.getInvoiceLevels(); ... %> I was just hoping there was a similar way of doing this in Struts 2. newton.dave wrote: > > --- kkjacks <[EMAIL PROTECTED]> wrote: >> I am interested in the actua

Re: Know of any good custom tag tutorials for struts 2?

2007-09-13 Thread kkjacks
I am interested in the actual writing of custom tags and I also hoped that by learning how to do this it would help facilitate my previous unanswered question of how to access the action through scriptlet code in the jsp. I know the action is on the ValueStack but I am not sure of the "correct"

Know of any good custom tag tutorials for struts 2?

2007-09-13 Thread kkjacks
Struts 2 literature seems to be pretty limited right now. Any detailed tutorial at all would be nice. I have looked through roseindia but it seems to just skim the surface. -- View this message in context: http://www.nabble.com/Know-of-any-good-custom-tag-tutorials-for-struts-2--tf4435689.html

Proper way to access action from JSP

2007-09-12 Thread kkjacks
I am teaching myself Struts 2 after using Struts 1. In Struts 1 I would access data from the action form in my jsp using the bean tag (ex. ). However Struts 2 seems to have merged the action class with the action form so I am not sure how to access this now. I know there is the tag but I want