RE: how to logic:iterate throu serveral collections at once ?

2003-03-30 Thread Jain, Shilpi
Thanks. I have been able to do it.

-Original Message-
From: Dan Tran [mailto:[EMAIL PROTECTED] 
Sent: Sunday, March 30, 2003 11:32 AM
To: Struts Users Mailing List
Subject: Re: how to logic:iterate throu serveral collections at once ?

A clean solution is to put your label, value, and boolean flag in a Bean
then you can access all those properties as you iterating thru.

Regarding the coloring, instead of using html:options tag,
your can use logic:iterate and writing out the html code and color yourself

-Dan

- Original Message -
From: Jain, Shilpi [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, March 29, 2003 9:51 PM
Subject: RE: how to logic:iterate throu serveral collections at once ?


 Hi
 I am using an options tag to display a label value collection. I have an
 additional propert associated with each of the values on this option which
I
 have stored as another boolean[]. Now in my UI, I want to have each of
these
 options to appear in two different colors depending on the corresponding
 value in my boolean[]. How can I implement this.


 -Shilpi

 -Original Message-
 From: Dan Tran [mailto:[EMAIL PROTECTED]
 Sent: Sunday, March 30, 2003 11:15 AM
 To: Struts Users Mailing List
 Subject: Re: how to logic:iterate throu serveral collections at once ?

 logic:iterate exposes an collection's index, with can be use to access
other
 collection, right?

 -D
 - Original Message -
 From: Slava_L [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Saturday, March 29, 2003 10:15 PM
 Subject: Re: how to logic:iterate throu serveral collections at once ?


  Struts doc says that only one object can be iterated inside on
 logic:iterate
  - Original Message -
  From: Dan Tran [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Sunday, March 30, 2003 12:39 PM
  Subject: Re: how to logic:iterate throu serveral collections at once ?
 
 
   The answer is yes. Please check struts doc
  
   However, by place your id and label into LabelValueBean. It will make
 your
   code easier write
   thru logic:iterate
  
   -Dan
   - Original Message -
   From: Slava_L [EMAIL PROTECTED]
   To: Struts Users Mailing List [EMAIL PROTECTED]
   Sent: Saturday, March 29, 2003 9:02 PM
   Subject: how to logic:iterate throu serveral collections at once ?
  
  
   Suppose i have ids[] array and labels[] array
  
   I need to render link a href=someaction.do?id=ids[i] label[i] /a
   is it possible to do with logic:iterate ?
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



how to logic:iterate throu serveral collections at once ?

2003-03-29 Thread Slava_L
Suppose i have ids[] array and labels[] array 

I need to render link a href=someaction.do?id=ids[i] label[i] /a
is it possible to do with logic:iterate ? 



Re: how to logic:iterate throu serveral collections at once ?

2003-03-29 Thread Dan Tran
The answer is yes. Please check struts doc

However, by place your id and label into LabelValueBean. It will make your
code easier write
thru logic:iterate

-Dan
- Original Message -
From: Slava_L [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Saturday, March 29, 2003 9:02 PM
Subject: how to logic:iterate throu serveral collections at once ?


Suppose i have ids[] array and labels[] array

I need to render link a href=someaction.do?id=ids[i] label[i] /a
is it possible to do with logic:iterate ?


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: how to logic:iterate throu serveral collections at once ?

2003-03-29 Thread Slava_L
Struts doc says that only one object can be iterated inside on logic:iterate
- Original Message -
From: Dan Tran [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Sunday, March 30, 2003 12:39 PM
Subject: Re: how to logic:iterate throu serveral collections at once ?


 The answer is yes. Please check struts doc

 However, by place your id and label into LabelValueBean. It will make your
 code easier write
 thru logic:iterate

 -Dan
 - Original Message -
 From: Slava_L [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Saturday, March 29, 2003 9:02 PM
 Subject: how to logic:iterate throu serveral collections at once ?


 Suppose i have ids[] array and labels[] array

 I need to render link a href=someaction.do?id=ids[i] label[i] /a
 is it possible to do with logic:iterate ?


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: how to logic:iterate throu serveral collections at once ?

2003-03-29 Thread Dan Tran
logic:iterate exposes an collection's index, with can be use to access other
collection, right?

-D
- Original Message -
From: Slava_L [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Saturday, March 29, 2003 10:15 PM
Subject: Re: how to logic:iterate throu serveral collections at once ?


 Struts doc says that only one object can be iterated inside on
logic:iterate
 - Original Message -
 From: Dan Tran [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Sunday, March 30, 2003 12:39 PM
 Subject: Re: how to logic:iterate throu serveral collections at once ?


  The answer is yes. Please check struts doc
 
  However, by place your id and label into LabelValueBean. It will make
your
  code easier write
  thru logic:iterate
 
  -Dan
  - Original Message -
  From: Slava_L [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Saturday, March 29, 2003 9:02 PM
  Subject: how to logic:iterate throu serveral collections at once ?
 
 
  Suppose i have ids[] array and labels[] array
 
  I need to render link a href=someaction.do?id=ids[i] label[i] /a
  is it possible to do with logic:iterate ?
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: how to logic:iterate throu serveral collections at once ?

2003-03-29 Thread Jain, Shilpi
Hi
I am using an options tag to display a label value collection. I have an
additional propert associated with each of the values on this option which I
have stored as another boolean[]. Now in my UI, I want to have each of these
options to appear in two different colors depending on the corresponding
value in my boolean[]. How can I implement this.


-Shilpi

-Original Message-
From: Dan Tran [mailto:[EMAIL PROTECTED] 
Sent: Sunday, March 30, 2003 11:15 AM
To: Struts Users Mailing List
Subject: Re: how to logic:iterate throu serveral collections at once ?

logic:iterate exposes an collection's index, with can be use to access other
collection, right?

-D
- Original Message -
From: Slava_L [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Saturday, March 29, 2003 10:15 PM
Subject: Re: how to logic:iterate throu serveral collections at once ?


 Struts doc says that only one object can be iterated inside on
logic:iterate
 - Original Message -
 From: Dan Tran [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Sunday, March 30, 2003 12:39 PM
 Subject: Re: how to logic:iterate throu serveral collections at once ?


  The answer is yes. Please check struts doc
 
  However, by place your id and label into LabelValueBean. It will make
your
  code easier write
  thru logic:iterate
 
  -Dan
  - Original Message -
  From: Slava_L [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Saturday, March 29, 2003 9:02 PM
  Subject: how to logic:iterate throu serveral collections at once ?
 
 
  Suppose i have ids[] array and labels[] array
 
  I need to render link a href=someaction.do?id=ids[i] label[i] /a
  is it possible to do with logic:iterate ?
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: how to logic:iterate throu serveral collections at once ?

2003-03-29 Thread Dan Tran
A clean solution is to put your label, value, and boolean flag in a Bean
then you can access all those properties as you iterating thru.

Regarding the coloring, instead of using html:options tag,
your can use logic:iterate and writing out the html code and color yourself

-Dan

- Original Message -
From: Jain, Shilpi [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, March 29, 2003 9:51 PM
Subject: RE: how to logic:iterate throu serveral collections at once ?


 Hi
 I am using an options tag to display a label value collection. I have an
 additional propert associated with each of the values on this option which
I
 have stored as another boolean[]. Now in my UI, I want to have each of
these
 options to appear in two different colors depending on the corresponding
 value in my boolean[]. How can I implement this.


 -Shilpi

 -Original Message-
 From: Dan Tran [mailto:[EMAIL PROTECTED]
 Sent: Sunday, March 30, 2003 11:15 AM
 To: Struts Users Mailing List
 Subject: Re: how to logic:iterate throu serveral collections at once ?

 logic:iterate exposes an collection's index, with can be use to access
other
 collection, right?

 -D
 - Original Message -
 From: Slava_L [EMAIL PROTECTED]
 To: Struts Users Mailing List [EMAIL PROTECTED]
 Sent: Saturday, March 29, 2003 10:15 PM
 Subject: Re: how to logic:iterate throu serveral collections at once ?


  Struts doc says that only one object can be iterated inside on
 logic:iterate
  - Original Message -
  From: Dan Tran [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Sunday, March 30, 2003 12:39 PM
  Subject: Re: how to logic:iterate throu serveral collections at once ?
 
 
   The answer is yes. Please check struts doc
  
   However, by place your id and label into LabelValueBean. It will make
 your
   code easier write
   thru logic:iterate
  
   -Dan
   - Original Message -
   From: Slava_L [EMAIL PROTECTED]
   To: Struts Users Mailing List [EMAIL PROTECTED]
   Sent: Saturday, March 29, 2003 9:02 PM
   Subject: how to logic:iterate throu serveral collections at once ?
  
  
   Suppose i have ids[] array and labels[] array
  
   I need to render link a href=someaction.do?id=ids[i] label[i] /a
   is it possible to do with logic:iterate ?
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: how to logic:iterate throu serveral collections at once ?

2003-03-29 Thread James Turner
I covered a similar thing in the Basebeans talk I gave today, you can
get the slides at www.strutskickstart.com

James

 -Original Message-
 From: Dan Tran [mailto:[EMAIL PROTECTED] 
 Sent: Sunday, March 30, 2003 1:02 AM
 To: Struts Users Mailing List
 Subject: Re: how to logic:iterate throu serveral collections at once ?
 
 
 A clean solution is to put your label, value, and boolean 
 flag in a Bean then you can access all those properties as 
 you iterating thru.
 
 Regarding the coloring, instead of using html:options tag,
 your can use logic:iterate and writing out the html code and 
 color yourself
 
 -Dan
 
 - Original Message -
 From: Jain, Shilpi [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Saturday, March 29, 2003 9:51 PM
 Subject: RE: how to logic:iterate throu serveral collections at once ?
 
 
  Hi
  I am using an options tag to display a label value 
 collection. I have 
  an additional propert associated with each of the values on this 
  option which
 I
  have stored as another boolean[]. Now in my UI, I want to 
 have each of
 these
  options to appear in two different colors depending on the 
  corresponding value in my boolean[]. How can I implement this.
 
 
  -Shilpi
 
  -Original Message-
  From: Dan Tran [mailto:[EMAIL PROTECTED]
  Sent: Sunday, March 30, 2003 11:15 AM
  To: Struts Users Mailing List
  Subject: Re: how to logic:iterate throu serveral 
 collections at once ?
 
  logic:iterate exposes an collection's index, with can be 
 use to access
 other
  collection, right?
 
  -D
  - Original Message -
  From: Slava_L [EMAIL PROTECTED]
  To: Struts Users Mailing List [EMAIL PROTECTED]
  Sent: Saturday, March 29, 2003 10:15 PM
  Subject: Re: how to logic:iterate throu serveral 
 collections at once ?
 
 
   Struts doc says that only one object can be iterated inside on
  logic:iterate
   - Original Message -
   From: Dan Tran [EMAIL PROTECTED]
   To: Struts Users Mailing List [EMAIL PROTECTED]
   Sent: Sunday, March 30, 2003 12:39 PM
   Subject: Re: how to logic:iterate throu serveral 
 collections at once 
   ?
  
  
The answer is yes. Please check struts doc
   
However, by place your id and label into 
 LabelValueBean. It will 
make
  your
code easier write
thru logic:iterate
   
-Dan
- Original Message -
From: Slava_L [EMAIL PROTECTED]
To: Struts Users Mailing List [EMAIL PROTECTED]
Sent: Saturday, March 29, 2003 9:02 PM
Subject: how to logic:iterate throu serveral 
 collections at once ?
   
   
Suppose i have ids[] array and labels[] array
   
I need to render link a 
 href=someaction.do?id=ids[i] label[i] 
/a is it possible to do with logic:iterate ?
   
   

 --
---
To unsubscribe, e-mail: 
 [EMAIL PROTECTED]
For additional commands, e-mail: 
 [EMAIL PROTECTED]
   
   
  
  
   
 
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: 
 [EMAIL PROTECTED]
  
  
 
  
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
  
 -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]