RE: [OT] JSTL + Collection size

2005-04-29 Thread Robert Taylor
D] Sent: Friday, April 29, 2005 2:22 PM To: user@struts.apache.org Subject: Re: [OT] JSTL + Collection size I tried it, said the syntax is wrong. I didn't see anything about "fn" in the JSTL spec. Where can I find documentation on this? Do I need to import a library? For now,

Re: [OT] JSTL + Collection size

2005-04-29 Thread Rick Reumann
draegoon Z wrote the following on 4/29/2005 2:21 PM: I tried it, said the syntax is wrong. I didn't see anything about "fn" in the JSTL spec. Where can I find documentation on this? Do I need to import a library? For now, I am just using a c:for loop to count the collection, but this can't be the c

RE: [OT] JSTL + Collection size

2005-04-29 Thread Brian McGovern
Message- From: draegoon Z [mailto:[EMAIL PROTECTED] Sent: Friday, April 29, 2005 2:22 PM To: user@struts.apache.org Subject: Re: [OT] JSTL + Collection size I tried it, said the syntax is wrong. I didn't see anything about "fn" in the JSTL spec. Where can I find documentation on this

Re: [OT] JSTL + Collection size

2005-04-29 Thread draegoon Z
or <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: [OT] JSTL + Collection size Date: Fri, 29 Apr 2005 07:30:49 -0400 Size: draegoon Z wrote: Just trying to find the ${my_collection.size} or ${my_collectio

Re: [OT] JSTL + Collection size

2005-04-29 Thread Joe Germuska
At 7:30 AM -0400 4/29/05, Robert Taylor wrote: Size: If you can't use JSTL 1.1 functions yet, you can use the tag from Struts' taglib to define a bean with the collection's size as its value. Joe -- Joe Germuska [EMAIL PROTECTED] http://blog.germuska.com "Narrow minds are wea

Re: [OT] JSTL + Collection size

2005-04-29 Thread Robert Taylor
Size: draegoon Z wrote: Just trying to find the ${my_collection.size} or ${my_collection.length}! Why is it not that simple? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] ---

Re: [OT] JSTL + Collection size

2005-04-28 Thread draegoon Z
gt; Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: [OT] JSTL + Collection size Date: Thu, 28 Apr 2005 16:39:52 -0700 From: "draegoon Z" <[EMAIL PROTECTED]> > Just trying to find the ${my_collection.size} or ${my_collectio

Re: [OT] JSTL + Collection size

2005-04-28 Thread Wendy Smoak
From: "draegoon Z" <[EMAIL PROTECTED]> > Just trying to find the ${my_collection.size} or ${my_collection.length}! > Why is it not that simple? Unfortunately, the Collection interface only has a 'size' method, not the 'getSize' that would be required for what you wrote to work. What are you tryi