Re: get value to specific key

2010-11-03 Thread Emil Dombagolla
Hi all, Thanks a lot for the solutions. Emil On Wed, Nov 3, 2010 at 9:30 AM, Dale Newfield wrote: > in Java you have two tools to get what you're asking for: > > Map has an entrySet() method returns a Set, each one of which > has a getKey() and a getValue() method. > The original map also ha

Re: get value to specific key

2010-11-02 Thread Dale Newfield
in Java you have two tools to get what you're asking for: Map has an entrySet() method returns a Set, each one of which has a getKey() and a getValue() method. The original map also has a get() method. So translating to ognl, you can iterate over map.entrySet(), and use top.key, top.value (or

Re: get value to specific key

2010-11-02 Thread Maurizio Cucchiara
You should be able to access on a specific map item through or You also should be able to iterate through 2010/11/2 Emil Dombagolla : > Dear all , > > Please please help me on this, > > I have a map with iterator tag, i need to get a value for a specific key, > can i do this > > >

Re: get value to specific key

2010-11-02 Thread Matthias Rakowski
This should work: I want to say, i expect VALUE for the relevant key - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail: user-h...@struts.apache.org

get value to specific key

2010-11-02 Thread Emil Dombagolla
Dear all , Please please help me on this, I have a map with iterator tag, i need to get a value for a specific key, can i do this I want to say , i expect VALUE for the relevant key Thanks Lot. emil