Re: [S1] access values of a Map

2007-08-01 Thread Niall Pemberton
On 8/1/07, Alexander Jede <[EMAIL PROTECTED]> wrote: > Hallo, > me bean has a Map attribute. > Now I want to get access to the values of the Map. But I do not want > iterate throw the entire Map. In Java I would write something like: > map.get("key") > What is the best way to do this in my JSP with

Re: [S1] access values of a Map

2007-08-01 Thread Jasper Floor
On 8/1/07, Alexander Jede <[EMAIL PROTECTED]> wrote: > > hmm ok I found it in the package description of bean. > My problem was, I searched this information in the doc of the taglib (not > javadoc). > Does this work with other tags then like ? In general when using tags I would avoid the javad

Re: [S1] access values of a Map

2007-08-01 Thread Alexander Jede
Hi, Am Mittwoch, den 01.08.2007, 12:26 +0200 schrieb Jasper Floor: ... > I believe you can access indexed properties with bean:write through > the property attribute. > > > I believe this because the struts documentation tells me so. ;) hmm ok I found it in the package description of bean.

Re: [S1] access values of a Map

2007-08-01 Thread Jasper Floor
On 8/1/07, Alexander Jede <[EMAIL PROTECTED]> wrote: > Hallo, > me bean has a Map attribute. > Now I want to get access to the values of the Map. But I do not want > iterate throw the entire Map. In Java I would write something like: > map.get("key") > What is the best way to do this in my JSP with