RE: [s2] If Test Conditions

2007-05-30 Thread Hoying, Ken
, May 30, 2007 10:10 AM To: Struts Users Mailing List Subject: Re: [s2] If Test Conditions The problem is that displaytag places the current row in the pageContext but none of your expressions are addressing it. I tend to just use JSTL within displaytag tables as its much easier to access the

Re: [s2] If Test Conditions

2007-05-30 Thread Dave Newton
--- Jeromy Evans wrote: > The problem is that displaytag places the current > row in the pageContext but none of your expressions > are addressing it. Or it could be that ;) Dave "Shouldn't answer questions about taglibs he doesn't know" Newton

Re: [s2] If Test Conditions

2007-05-30 Thread Dave Newton
--- "Hoying, Ken" <[EMAIL PROTECTED]> wrote: > "${idContract.status}=='NEW'" > '${idContract.status}=="NEW"' > "%{idContract.status}=='NEW'" These close the OGNL expression too early. > "${idContract.status=='NEW'}" > "%{idContract.status=='NEW'}" > "idContract.status=='NEW'" > "#idContract.statu

Re: [s2] If Test Conditions

2007-05-30 Thread Jeromy Evans
The problem is that displaytag places the current row in the pageContext but none of your expressions are addressing it. I tend to just use JSTL within displaytag tables as its much easier to access the current row. I also tend to add getters to my bean to simplify the expressions instead of h