Hi all,

Thanks a lot  for the solutions.

Emil


On Wed, Nov 3, 2010 at 9:30 AM, Dale Newfield <d...@newfield.org> wrote:

> in Java you have two tools to get what you're asking for:
>
> Map has an entrySet() method returns a Set<Map.Entry>, 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 just key, value)...or wherever you have a key, you
> can always say map.get(key).
>
> -Dale
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> For additional commands, e-mail: user-h...@struts.apache.org
>
>

Reply via email to