RE: nested tags

2004-11-18 Thread Felix Velasco
have you tried looking at the generated .java files? At worst you might be able to decompile the .class generated for this jsp -Original Message- From: luca [mailto:[EMAIL PROTECTED] Sent: 18 November 2004 13:45 To: Tag Libraries Users List Subject: nested tags Hallo, I have

Re: nested tags

2004-11-18 Thread luca
People, I fixed the problem. I'll post anyway the msg I was about to send to the list right before I relalized it was a banal NullPointerException that for some reason did not produce any diagnostics. This may be interesting for those who have similar problems in then future and to show how

Re: Nested Tags Question

2004-08-24 Thread Kris Schneider
You can't use one tag as an attribute value for another tag... Quoting kalyan inuganti [EMAIL PROTECTED]: Hi, I have some thing like - c:choose c:when test='${registrationForm.dobYear != }' date:complete monthName=dobMonth

Re: Nested Tags Question

2004-08-24 Thread Helios Alonso
Would it work? c:set var=auxthevaluetag//c:set othertag attibute=${aux}/ At 08:18 24/08/2004 -0400, you wrote: You can't use one tag as an attribute value for another tag... Quoting kalyan inuganti [EMAIL PROTECTED]: Hi, I have some thing like - c:choose c:when

Re: Nested Tags Question

2004-08-24 Thread Kris Schneider
Yes. In that case, aux will be a page-scoped variable whose value is the result of trimming the string produced by the thevaluetag/ tag. Quoting Helios Alonso [EMAIL PROTECTED]: Would it work? c:set var=auxthevaluetag//c:set othertag attibute=${aux}/ At 08:18 24/08/2004 -0400, you wrote:

Re: Nested Tags Question

2004-08-24 Thread kalyan inuganti
Guys - Thanks for the response but in the below example, c:set var=auxthevaluetag//c:set othertag attibute=${aux}/ the othertag is literally taking the String ${aux} instead of its value. I do have rtexprvaluetrue/rtexprvalue for that particular attribute set. Any thoughts? Thanks --- Kris

Re: Nested Tags Question

2004-08-24 Thread Kris Schneider
For JSP 1.2 and earlier, rtexprvalue means an attribute can take an expression of the form %= ... % as its value. It's not until JSP 2.0 that the container provides the same level of built-in support for EL expressions. If you want to use EL expressions for attribute values in your own tags you

Re: Nested tags syntax

2003-07-20 Thread Rick Ross
The JSTL tags have the ability to read the parameters. You need to sit down with the Spec or a decent book on JSTL. A couple of hours now will save you tons later. This will get the job done: c:set var=password value=${param.password} / R - Original Message - From: Mike Steigerwald