Re: [appfuse-user] Struts2 taglibs

2007-06-08 Thread Matt Raible
I don't know of one off the top of my head - I'd suggest using Google or posting a similar question to the Struts User list. Matt On 6/7/07, Fan <[EMAIL PROTECTED]> wrote: Any online tutorial for writing a customised tag ? mraible wrote: > > On 6/7/07, Martin Ravell <[EMAIL PROTECTED]> wrote

Re: [appfuse-user] Struts2 taglibs

2007-06-07 Thread Fan
Any online tutorial for writing a customised tag ? mraible wrote: > > On 6/7/07, Martin Ravell <[EMAIL PROTECTED]> wrote: >> Thanks Matt. Will check this out. >> >> Another issue: If I have an old taglib which is expecting an object to be >> passed into it is there some syntax I can use in the

Re: [appfuse-user] Struts2 taglibs

2007-06-07 Thread Matt Raible
On 6/7/07, Martin Ravell <[EMAIL PROTECTED]> wrote: Thanks Matt. Will check this out. Another issue: If I have an old taglib which is expecting an object to be passed into it is there some syntax I can use in the jsp to get this from my Action's ValueStack? (I have a getter in my Action which re

Re: [appfuse-user] Struts2 taglibs

2007-06-07 Thread Martin Ravell
Thanks Matt. Will check this out. Another issue: If I have an old taglib which is expecting an object to be passed into it is there some syntax I can use in the jsp to get this from my Action's ValueStack? (I have a getter in my Action which returns the expected object). Marty > You might try l

Re: [appfuse-user] Struts2 taglibs

2007-06-07 Thread Matt Raible
You might try looking at existing classes in org.apache.struts2.views.jsp (http://struts.apache.org/2.0.6/struts2-core/apidocs/org/apache/struts2/views/jsp/package-summary.html). You also might consider extending SimpleTag, which is part of JSP 2.0. http://java.sun.com/j2ee/1.4/docs/tutorial/doc/

[appfuse-user] Struts2 taglibs

2007-06-07 Thread Martin Ravell
I'm going to have a crack at building a taglib for my 2m5 application and was wondering about maing this understand the Struts2 object graph (OGNL?) Has anyone on the list done anything like this before? If so I'd appreciate it if you could share any resource URLs, tutorials etc that you may have