RE: Unable to see c:forEach out put

2005-01-13 Thread Abdullah Jibaly
Sorry, I was probably thinking that current was the varStatus variable. My mistake. -Original Message- From: Dakota Jack [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 5:23 PM To: Struts Users Mailing List Subject: Re: Unable to see c:forEach out put I used: td

Re: Unable to see c:forEach out put

2005-01-12 Thread Vamsee Kanakala
Rick Reumann wrote: It sounds like you are probably are now using a JSP2.0 container like Tomcat5 and are refering to the wrong tld. Refer to the one in the jar like: %@ taglib prefix=c uri=http://java.sun.com/jsp/jstl/core% and remove and direct pointing to the tlds you have. Yes, I am using

Re: Unable to see c:forEach out put

2005-01-12 Thread Dakota Jack
Hi, Vamsee, Don't you have to define what items are covered by your var? Jack snip On Wed, 12 Jan 2005 13:52:32 +0530, Vamsee Kanakala [EMAIL PROTECTED] wrote: c:forEach begin=1 end=5 var=current c:out value=${current} / /c:forEach I get something like this: ${current}

Re: Unable to see c:forEach out put

2005-01-12 Thread Vamsee Kanakala
Dakota Jack wrote: Don't you have to define what items are covered by your var? Sorry if I sound daft, but I do I have to do that? Where do I do that? TIA, -Vamsee. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: Unable to see c:forEach out put

2005-01-12 Thread Dakota Jack
I guess I am daft. Must have been off last night. You don't have to when your beginning and end values are the basis for an iteration. What do you mean that you get something like this? Is it that or not? Jack On Wed, 12 Jan 2005 17:24:03 +0530, Vamsee Kanakala [EMAIL PROTECTED] wrote:

Re: Unable to see c:forEach out put

2005-01-12 Thread Kishore Senji
On Wed, 12 Jan 2005 13:52:32 +0530, Vamsee Kanakala [EMAIL PROTECTED] wrote: Rick Reumann wrote: It sounds like you are probably are now using a JSP2.0 container like Tomcat5 and are refering to the wrong tld. Refer to the one in the jar like: %@ taglib prefix=c

RE: Unable to see c:forEach out put

2005-01-12 Thread Abdullah Jibaly
Actually I think it's ${current.count} -Original Message- From: Kishore Senji [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 12:37 PM To: Struts Users Mailing List Subject: Re: Unable to see c:forEach out put On Wed, 12 Jan 2005 13:52:32 +0530, Vamsee Kanakala [EMAIL

Re: Unable to see c:forEach out put

2005-01-12 Thread Dakota Jack
[EMAIL PROTECTED] wrote: Actually I think it's ${current.count} -Original Message- From: Kishore Senji [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 12, 2005 12:37 PM To: Struts Users Mailing List Subject: Re: Unable to see c:forEach out put On Wed, 12 Jan 2005 13:52:32 +0530

Re: Unable to see c:forEach out put

2005-01-12 Thread Dakota Jack
: Wednesday, January 12, 2005 12:37 PM To: Struts Users Mailing List Subject: Re: Unable to see c:forEach out put On Wed, 12 Jan 2005 13:52:32 +0530, Vamsee Kanakala [EMAIL PROTECTED] wrote: Rick Reumann wrote: It sounds like you are probably are now using a JSP2.0 container like

Re: Unable to see c:forEach out put

2005-01-12 Thread Kishore Senji
PROTECTED] Sent: Wednesday, January 12, 2005 12:37 PM To: Struts Users Mailing List Subject: Re: Unable to see c:forEach out put On Wed, 12 Jan 2005 13:52:32 +0530, Vamsee Kanakala [EMAIL PROTECTED] wrote: Rick Reumann wrote: It sounds like you are probably are now

Re: Unable to see c:forEach out put

2005-01-12 Thread Vamsee Kanakala
Vamsee Kanakala wrote: I have a code fragment like this: td align=left c:forEach items=${statusList} var=current c:out value=${current.name}/ /c:forEach /td Thanks guys... I solved it. Seems like it's an issue with the Tomcat 5, which

Unable to see c:forEach out put

2005-01-11 Thread Vamsee Kanakala
Hi List, I have a code fragment like this: td align=left c:forEach items=${statusList} var=current c:out value=${current.name}/ /c:forEach /td Where statusList is a list of class instances, which has a setters and getters for properties id