RE: [S2] s:if in 2.0.11

2007-11-21 Thread Jiang, Jane (NIH/NCI) [C]
Subject: RE: [S2] s:if in 2.0.11 Thanks so much for your explanation. I changed my statement to That works. I don't want to move result size to value stack yet since I need to move on and see what other problems might exist for the upgrade. Now I got a similar problem. My result is display

RE: [S2] s:if in 2.0.11

2007-11-21 Thread Jiang, Jane (NIH/NCI) [C]
ailto:[EMAIL PROTECTED] Sent: Wednesday, November 21, 2007 11:06 AM To: Struts Users Mailing List Subject: Re: [S2] s:if in 2.0.11 You're trying to mix expression languages. %{resultSize > 0} assumes that resultSize is on the value stack, most likely exposed via a public getter on your ac

RE: [S2] s:if in 2.0.11

2007-11-21 Thread Martin Gainty
pls display import statement and tld for expression you are usingMartin __Disclaimer and confidentiality noteEverything in this e-mail and any attachments relates to the official business of Sender. This transmission is of a confidential nature and Se

Re: [S2] s:if in 2.0.11

2007-11-21 Thread Dave Newton
You're trying to mix expression languages. %{resultSize > 0} assumes that resultSize is on the value stack, most likely exposed via a public getter on your action. This is arguably a better practice anyway. If the list itself is available on the stack then you can call the size() method on the li