Re: Iterate Hashmap with s:iterate

2007-09-21 Thread Cory D. Wiles
Example code: On 9/21/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > --- j alex <[EMAIL PROTECTE

Re: Iterate Hashmap with s:iterate

2007-09-21 Thread Dave Newton
--- j alex <[EMAIL PROTECTED]> wrote: > The entire expresion is OGNL, not just the "key" value from the stack. d. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Iterate Hashmap with s:iterate

2007-09-20 Thread j alex
I'm not able to use the key within an s:if condition though.. Code : It prints out the correct value in else condition but the comparison fails ; please help! -Joseph On 9/12/07, Cory D. Wiles <[EMAIL PROTECTED]> wrote: > > That worked perfectly. Thanks everyone for all the help. > > -

Re: Iterate Hashmap with s:iterate

2007-09-12 Thread Cory D. Wiles
That worked perfectly. Thanks everyone for all the help. -Cory On 9/12/07, Josh Vickery <[EMAIL PROTECTED]> wrote: > > Looking through some code here, this is what I have: > > > > > > > The above seems to work OK, though I'm a little curious about the > inclusion of the double parenthese

Re: Iterate Hashmap with s:iterate

2007-09-12 Thread Dave Newton
--- Josh Vickery <[EMAIL PROTECTED]> wrote: > I'm a little curious about the inclusion of the > double parentheses at the end of "entrySet" -- OGNL, > as far as I am concerned, is a bit of strange beast. It's a method call -- not property access. d.

Re: Iterate Hashmap with s:iterate

2007-09-12 Thread Josh Vickery
Looking through some code here, this is what I have: The above seems to work OK, though I'm a little curious about the inclusion of the double parentheses at the end of "entrySet" -- OGNL, as far as I am concerned, is a bit of strange beast. Josh On 9/12/07, Cory D. Wiles <[EMAIL PROTEC

Re: Iterate Hashmap with s:iterate

2007-09-12 Thread Cory D. Wiles
It is still not working the way that I want to, but I do appreciate the help. I'll just have to keep plugging away at it. Thanks, Cory On 9/12/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > The OGNL manual. > > http://www.ognl.org/2.6.9/Documentation/html/LanguageGuide/index.html > > --- "Cory D

Re: Iterate Hashmap with s:iterate

2007-09-12 Thread Dave Newton
The OGNL manual. http://www.ognl.org/2.6.9/Documentation/html/LanguageGuide/index.html --- "Cory D. Wiles" <[EMAIL PROTECTED]> wrote: > Dave, > Where did you find the documentation on the > "pseudo-property"? > > On 9/12/07, Dave Newton <[EMAIL PROTECTED]> > wrote: > > > > IIRC OGNL supplies

Re: Iterate Hashmap with s:iterate

2007-09-12 Thread Cory D. Wiles
Dave, Where did you find the documentation on the "pseudo-property"? On 9/12/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > IIRC OGNL supplies a pseudo-property "keys" that will > return a list of keys present in the map. > > --- Wesley Wannemacher <[EMAIL PROTECTED]> > wrote: > > > If I remembe

RE: Iterate Hashmap with s:iterate

2007-09-12 Thread Dave Newton
IIRC OGNL supplies a pseudo-property "keys" that will return a list of keys present in the map. --- Wesley Wannemacher <[EMAIL PROTECTED]> wrote: > If I remember correctly, to use the s:iterator tag, > you have to use an > object that has an 'iterator()' method. HashMap does > not implement > jav

RE: Iterate Hashmap with s:iterate

2007-09-12 Thread Wesley Wannemacher
If I remember correctly, to use the s:iterator tag, you have to use an object that has an 'iterator()' method. HashMap does not implement java.util.List... To iterate over a Hashmap, get the keyset [tempMap.ketSet()] from it. The keyset is a List and you can get an iterator from there. -Wes -