Re: struts2 s:if and displaytag question

2008-02-19 Thread Randy Burgess
unications > From: red phoenix <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List > Date: Wed, 20 Feb 2008 00:09:43 +0800 > To: Struts Users Mailing List > Subject: struts2 s:if and displaytag question > > I use Struts2 and displaytag, In testList,there is a

Re: struts2 s:if and displaytag question

2008-02-19 Thread Dave Newton
The "#element" is syntax meaning there's a named element "element" on the value stack; do the display tags interact with the S2 value stack? I'd be more likely to try "${element.abc}" as I would have assumed that the display tags did things with normal JEE contexts. Just an idea. Dave --- red p

struts2 s:if and displaytag question

2008-02-19 Thread red phoenix
I use Struts2 and displaytag, In testList,there is a abc attribute,it contains data like "english","france",when abc="english",I want to show En,else show Eu,my code is follows: En Eu when I execute code,I find it only shows english or france,I don't know why