RE: EL expression not getting evaluated

2005-06-29 Thread Pushkala_Iyer
1. Add the EL tag library descriptor to your web.xml. /tags/struts-html-el /WEB-INF/struts-html-el.tld 2. Include the required jar files in WEB-INF/lib: struts-el.jar, standard.jar 3. Import the tag library in your jsp and use the el tags: <%@ taglib uri="/tags/struts-html-el" prefi

RE: Expression evaluation with html-el tags?

2005-06-02 Thread Pushkala_Iyer
Yes, that was it. I just discovered that a couple minutes ago, too. Thanks for the help! -Original Message- From: John Fitzpatrick [mailto:[EMAIL PROTECTED] Sent: Thursday, June 02, 2005 10:31 AM To: Struts Users Mailing List Subject: Re: Expression evaluation with html-el tags? I'v

FW: Expression evaluation with html-el tags?

2005-06-02 Thread Pushkala_Iyer
Is it possible to do more than just simple loop index evaluation with html-el tags? I iterate over 2 loops: However, within my inner loop, I want to calculate the index as follows: outerLoop.Index * innerLoop.size + innerLoop.index My questions are: 1) The fo

RE: logic:iterate multiple collections

2005-05-24 Thread Pushkala_Iyer
Thanks! That worked, and is also much easier to understand. This is probably a newbie question: How / when does one choose between using JSTL / Struts Tags? Is there any reason to choose Struts tags over JSTL? Thanks, PS -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] S

RE: logic:iterate multiple collections

2005-05-24 Thread Pushkala_Iyer
A related question, so I thought I'll post it to this thread. The data structure I use is a HashMap, whose values are other HashMaps. Like so: OuterMap OuterKey1: InnerMap1 InnerKey11: Value11 InnerKey12: Value12 OuterKey2: InnerMap2 InnerKey21: Value21