• tamiaram
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies

Hi,

 

I need some help here.

 

Is there a way I can get information from a Map[String, List<SObject>] from my visual force page?

 

I mean. Is there a way I can write a repeat tag, in order to go throuht the a list, depending on an identifier. 

 

Let my code talk for me. This is how I image it:

 

 

 

<apex : repeat value='{!idList}' var='id'>

<apex : repeat value="{!map.get(id)}" var='x'>

 <apex : outputLabel value='{!x.Name}' />

</apex : repeat>

</apex : repeat>

 

 

Thanks a lot for your any help you can provide.