Re: custom tag development?

2009-07-24 Thread Mitch Claborn
That's close to what I need, but not quite there. custom5[s:component template=t1.jsp templateDir=myTemplates this is stuff in the middle /s:component] t1.jsp: %@ taglib prefix=s uri=/struts-tags % this is t1.jsp.br/ done renders as custom5[ this is stuff in the middle this is t1.jsp.br/

Re: custom tag development?

2009-07-24 Thread Musachy Barroso
you can still use the struts tags and/or jstl in the component. musachy On Fri, Jul 24, 2009 at 7:20 AM, Mitch Clabornmi...@claborn.net wrote: That's close to what I need, but not quite there. custom5[s:component template=t1.jsp templateDir=myTemplates  this is stuff in the middle

custom tag development?

2009-07-23 Thread Mitch Claborn
Hoping someone can give me some pointers on how to get started on developing my own tag. I want to develop a custom tag to use within Struts 2, kind of like s:iterator. What I have in mind is something like this: abc:mytag other stuff, including other struts tags /abc:mytag the tag would

Re: custom tag development?

2009-07-23 Thread Musachy Barroso
Look at the component tag, you might be able to create a tag without writing any code. musachy On Thu, Jul 23, 2009 at 3:50 PM, Mitch Clabornmi...@claborn.net wrote: Hoping someone can give me some pointers on how to get started on developing my own tag. I want to develop a custom tag to use