EL expression not getting evaluated

2005-06-29 Thread Phani
I am using WSAD 5.1.2. I have the following code to insert a checkBox for a Display Tag table.. display:table defaultsort=3 class= name=partItems id=partItem display:column titleKey={*} html:multibox name=partDetailForm property=intarray

RE: EL expression not getting evaluated

2005-06-29 Thread Karr, David
PROTECTED] Sent: Wed 06/29/2005 11:59 AM To: Struts Users Mailing List Subject: EL expression not getting evaluated I am using WSAD 5.1.2. I have the following code to insert a checkBox for a Display Tag table.. display:table defaultsort=3 class= name=partItems id=partItem

Re: EL expression not getting evaluated

2005-06-29 Thread Rahul Akolkar
On 6/29/05, Karr, David [EMAIL PROTECTED] wrote: I don't know whether WSAD 5.1.2 is a JSP 2.0 container. If it is not, then you'll need to use the Struts-EL taglib. If it is a JSP 2.0 container, then you'll need to make sure that your web.xml is using the Servlet 2.4 schema. For

RE: EL expression not getting evaluated

2005-06-29 Thread Pushkala_Iyer
1. Add the EL tag library descriptor to your web.xml. taglib taglib-uri/tags/struts-html-el/taglib-uri taglib-location/WEB-INF/struts-html-el.tld/taglib-location /taglib 2. Include the required jar files in WEB-INF/lib: struts-el.jar, standard.jar 3. Import the tag library in your jsp

Re: EL expression not getting evaluated

2005-06-29 Thread Phani
If it is so.. why is my expression not getting evaluated... ${partItem.intproperty} --- Rahul Akolkar [EMAIL PROTECTED] wrote: On 6/29/05, Karr, David [EMAIL PROTECTED] wrote: I don't know whether WSAD 5.1.2 is a JSP 2.0 container. If it is not, then you'll need to use the Struts-EL

RE: EL expression not getting evaluated

2005-06-29 Thread Karr, David
the number of changes you'll need to make to your pages when you move to a JSP 2.0 container. From: Phani [mailto:[EMAIL PROTECTED] Sent: Wed 06/29/2005 1:42 PM To: Struts Users Mailing List; Rahul Akolkar Subject: Re: EL expression not getting evaluated If it is so