substitute for JSP EL tags in struts 2.0.11

2007-12-12 Thread Swathi Ram
I recently upgraded to Struts 2.0.11, and all my jsps using the EL tags don't work anymore. I'm using these along with displaytags, to pass values of checkbox lists or field values to the action class. Is there any other way to do this. For example, in a table list of users, if the checkbox is

Re: substitute for JSP EL tags in struts 2.0.11

2007-12-12 Thread Swathi Ram
> change a lot more and take each case indivually to use JSTL (or Struts > 2.x tags). The latter work (in my opinion is more work) > > > Swathi Ram wrote: >> I recently upgraded to Struts 2.0.11, and all my jsps using the EL tags >> don't >> work anymore. &

Re: substitute for JSP EL tags in struts 2.0.11

2007-12-12 Thread Swathi Ram
ake your EL expressions use scope="request" and make the >>> tags (Struts 2.x) use the expression "%{#request.varInScope}" to get to >>> them. >>> >>> If you mean the EL tags from Struts 1.x, then you are going to have to >>> cha

Re: substitute for JSP EL tags in struts 2.0.11

2007-12-12 Thread Swathi Ram
;)).getUserId() ; request.setAttribute("jobResult", job); %> This code works perfectly. Thanks again. Alberto A. Flores wrote: > > Have you tried: > > > > Now foo has (should) have the value of the row and placed in request > sco