taglibs-user@jakarta.apache.org

2003-03-26 Thread Ray Madigan
I am attempting to use the

RE: Variable in a Struts tag

2003-03-26 Thread Karr, David
Ask Struts questions on the "struts-user" list. If you want to use the JSTL with Struts, you should probably use the Struts-EL library, which is a contributed library in the nightly build. > -Original Message- > From: Giovanni Formenti [mailto:[EMAIL PROTECTED] > > I have the JSTL/Struts

Re: Variable in a Struts tag

2003-03-26 Thread Jeff Smith
You have 3 problems. 1. You souldn't be using {} in the select value. 2. Assuming your XML root element is you haven't written your path properly = you need to specify the root element name which is NOT implied by the name you've given your tree variable. 3. x:set values refer typically to sub-tr

Variable in a Struts tag

2003-03-26 Thread Giovanni Formenti
I have the JSTL/Struts code: Customer Name: ... But when i write: Customer Name: the Struts taglib don't reads "${custName}" as a variable but as a string so create a textbox with the string "${custName}" inside! How can i do?! Thanx Gio --

Include a file with custom tags

2003-03-26 Thread Giovanni Formenti
Hallo, I'd like to know if it's possible to include into a JSP page another JSP page with some custom tags. I try with <%@ include file="tags.jsp" %> or or <%="content_of_tag.jsp" %> and it works but the custom tags in the "tags.jsp" file aren't parsed as custom tags, they stays the same as in "ta