gzilla/show_bug.cgi?id=17473
Problem to include a jsp into an iterate tag
--- Additional Comments From [EMAIL PROTECTED] 2004-02-25 07:38 ---
I would like to show a list of jobs and showing who should response to the job.
So I will create a table like :
Job Name Resp
PROTECTED]
Sent: Thursday, August 21, 2003 5:16 PM
To: Struts Developers List
Subject: Re: how to use index in iterate tag
I think this is one for the users list but we did using jstl foreach
tag like so:
cheers
Ben
- Original Message -
From
I think this is one for the users list but we did using jstl foreach
tag like so:
cheers
Ben
- Original Message -
From: Ramesh Kannery <[EMAIL PROTECTED]>
Date: Friday, August 22, 2003 3:07 am
Subject: how to use index in iterate tag
a table i hav to show rows in different colors.
Odd nos in one color and even nos in another color.
I thnk i can achieve through logic\iterate tag.
how to use the index id for this purpose?
regards
ramesh
-
To unsubscribe, e-mail: [
Hi
In a table i hav to show rows in different colors.
Odd nos in one color and even nos in another color.
I thnk i can achieve through logic\iterate tag.
how to use the index id for this purpose?
regards
ramesh
-
To unsubscribe
gzilla/show_bug.cgi?id=17473
Problem to include a jsp into an iterate tag
[EMAIL PROTECTED] changed:
What|Removed |Added
Target Milestone|--- |1.2
gzilla/show_bug.cgi?id=17473
Problem to include a jsp into an iterate tag
[EMAIL PROTECTED] changed:
What|Removed |Added
Severity|Major |Enhan
gzilla/show_bug.cgi?id=17473
Problem to include a jsp into an iterate tag
Summary: Problem to include a jsp into an iterate tag
Product: Struts
Version: 1.1 Beta 3
Platform: All
OS/Version: All
Status: NEW
Severity:
gzilla/show_bug.cgi?id=15159
Iterate tag collection attribute does not work
[EMAIL PROTECTED] changed:
What|Removed |Added
Status|NEW |RE
gzilla/show_bug.cgi?id=15159
Iterate tag collection attribute does not work
Summary: Iterate tag collection attribute does not work
Product: Struts
Version: 1.1 Beta 2
Platform: All
OS/Version: All
Status: NEW
Severity:
gzilla/show_bug.cgi?id=13043
Adjustment to Iterate logic
[EMAIL PROTECTED] changed:
What|Removed |Added
Status|NEW |RESOLVED
Reso
gzilla/show_bug.cgi?id=13043
Adjustment to Iterate logic
Summary: Adjustment to Iterate logic
Product: Struts
Version: 1.0.2 Final
Platform: All
OS/Version: All
Status: NEW
Severity: Enhancement
Priority:
gzilla/show_bug.cgi?id=10622
Problem with nested iterate tags
[EMAIL PROTECTED] changed:
What|Removed |Added
Status|NEW |RESOLVED
Reso
gzilla/show_bug.cgi?id=10622
Problem with nested iterate tags
--- Additional Comments From [EMAIL PROTECTED] 2002-07-10 16:02 ---
This is likely to be a Tomcat 4.1.7 issue, rather than Struts; but I'm leaving
it classified here for the moment. Would it be possible for you to tes
gzilla/show_bug.cgi?id=10622
Problem with nested iterate tags
Summary: Problem with nested iterate tags
Product: Struts
Version: 1.1 Beta 1
Platform: PC
OS/Version: Windows NT/2K
Status: NEW
Severity: Normal
Priority:
gzilla/show_bug.cgi?id=1871
tag that displays iterate tag index value
[EMAIL PROTECTED] changed:
What|Removed |Added
Status|NEW |RESOLVED
Reso
gzilla/show_bug.cgi?id=7250
Documentation for logic iterate doesn't indicate it will accept primitive arrays.
[EMAIL PROTECTED] changed:
What|Removed |Added
Subject: [Fwd: Iterate update]
From: JDavids <[EMAIL PROTECTED]>
===
No replies on users... would setX(String[] ) work? Something else?
Original Message
Subject: Iterate update
Date: Wed, 10 Apr 2002 14:28:13 -0700
From: "J.Davis" <[EMAIL PROTE
gzilla/show_bug.cgi?id=7250
Documentation for logic iterate doesn't indicate it will accept primitive arrays.
--- Additional Comments From [EMAIL PROTECTED] 2002-03-19 15:51 ---
Created an attachment (id=1383)
Path to fix documentation on logic:iterate as accepting array of primit
gzilla/show_bug.cgi?id=7250
Documentation for logic iterate doesn't indicate it will accept primitive arrays.
Summary: Documentation for logic iterate doesn't indicate it will
accept primitive arrays.
Product: Struts
Version: Nightly Build
There's one in the JSTL that you can extend.
Bob
- Original Message -
From: "Jeff Goke" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, February 25, 2002 10:09 PM
Subject: why is iterate tag final?
I am curious why the iterate tag is declared
It's not a final class in the nightly builds.
None of the tags in cvs are final.
A legacy detail.
Arron.
Jeff Goke wrote:
>I am curious why the iterate tag is declared as final? I was writing a wrapper tag
>to simplify the process of showing "pages" of informat
I am curious why the iterate tag is declared as final? I was writing a wrapper tag to
simplify the process of showing "pages" of information (since this is an extremely
common requirement) but quickly realized I cannot extend the iterate tag. Right now I
am resorting to taking
>
>
>
> One question is how does the iterate tag know which bean to use. Dont I
> have to define a bean object that states the type
> of bean that is inside of the vector.
>
> In regards to "Select/Options" tags, I need all kinds of help. I
code
is not working
Job
Job Title
One question is how does the iterate tag know which bean to use. Dont I
have to define a bean object that states the type
of bean that is inside of the
.addElement(cls);
}
I'd be using v.elementAt(0).getName() in my sql statement again to perform a
query. I got this running fine but i was hoping i would make the best use of
the iterate tag which required direction from a person like
On Tue, 27 Mar 2001, raghu tadi wrote:
> How would the bean element holding a vector of String objects be type casted
> to a String Object.
> Snippet :
>
> <%
> Vector v = new Vector();
> v.addElement(new String("John Doe"));
> v.addElement(new String("Jane Doe"));
> p
raghu tadi writes:
> How would the bean element holding a vector of String objects be type casted
> to a String Object.
This certainly can't be done with type casting. The Vector elements
would need to be concatenated.
--
Nick
> Snippet :
>
> <%
> Vector v = new Vecto
How would the bean element holding a vector of String objects be type casted
to a String Object.
Snippet :
<%
Vector v = new Vector();
v.addElement(new String("John Doe"));
v.addElement(new String("Jane Doe"));
pageContext.setAttribute("v",v, PageContext.PAGE_SCOP
On Fri, 23 Mar 2001, Sundar @eSaravana wrote:
> Since nobody seemed to have read my long mail, I am re-writing my mail short
> and probably sweet.
>
> Can I do, multilevel iteration with iterate tag.?
> For example:
> I have collection of beans in my session. In my JS
ClassCastException will occur.
--- Taylor Cowan <[EMAIL PROTECTED]> wrote:
> The iterate tag is similar to a
> in that it introduces a
> new scripting var. It would be nice to have the
> tag type cast the
> values from the iterat
Since nobody seemed to have read my long mail, I am re-writing my mail short
and probably sweet.
Can I do, multilevel iteration with iterate tag.?
For example:
I have collection of beans in my session. In my JSP, I want to first iterate
at the collection to get the individual beans. And for
On Fri, 23 Mar 2001, Taylor Cowan wrote:
> The iterate tag is similar to a in that it introduces a
> new scripting var. It would be nice to have the tag type cast the
> values from the iterator.
>
> Taylor Cowan
>
>
You can indeed specify the type of the scrip
The iterate tag is similar to a in that it introduces a
new scripting var. It would be nice to have the tag type cast the
values from the iterator.
Taylor Cowan
tadi wrote:
>
> Do something with myCollectionElement
>
>
>How do i get the Position value of a particular element in say a Vector
>when i use the iterate tag.Sample snippet would be like,
>
>Vector v has some String elements..
>for(int i =0 ; i < v.size(); i+
scenario.
recently, i've ended up using a solution similar to Michael's to keep a counter,
but this doesn't seem ideal to me. if people are really adamant about keeping
the iterate tag as it is, maybe the alternative would to construct an
indexedIterate tag or something like that.
raghu tadi <[EMAIL PROTECTED]> wrote:
> How do i get the Position value of a particular element in say a
> Vector when i use the iterate tag.Sample snippet would be like,
>
> Vector v has some String elements..
> for(int i =0 ; i < v.size(); i++)
> {
>
Raghu,
If you want to get one particular element you should be able to do this using
bean:define and indexed properties.
All you can do with the iterate tag is to skip the first elements and the last ones
using the offset and length
attributes.
If you want to know the index of the element you
Do something with myCollectionElement
How do i get the Position value of a particular element in say a Vector when
i use the iterate tag.Sample snippet would be like,
Vector v has some String elements..
for(int i =0 ; i < v.size(); i++)
{
out.println(v.elementAt(i));
}
Question is:
39 matches
Mail list logo