• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

get list value using index in logic : iterate

 
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

I have a list (allChannels) with channelIds and name(say about 50) and another list(zoneChannels) which contains few channelIds only(say about 5).
What I am expecting here is, when I iterate allChannels list, I want to set the index from zoneChannels Ids to allChannels list and get the value directly. like in java you can say list.get(1) will return the element.

What I have tried here is



Can anyone help me with how to achive this using struts tag please?

 
Shilpa Tendulkar
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am almost there I used logic : match



problem with this is how do i set the value as a "zoneChannelID" to <logic : match >

Please help...
 
Shilpa Tendulkar
Ranch Hand
Posts: 75
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I finally resolved this. I found you can not nest <bean : write > with logic tags

So what I have done is, I used <logic : equal > and get the zoneChannelID variable in java and use it in logic

 
reply
    Bookmark Topic Watch Topic
  • New Topic