Re: javax.el.ELException Select Tag

2009-10-30 Thread Balwinder Kumar
. -Original Message- From: Dale Newfield [mailto:d...@newfield.org] Sent: 29 October 2009 15:54 To: Struts Users Mailing List Subject: Re: javax.el.ELException Select Tag Bhaarat Sharma wrote: so it should be: s:select label=programType id=programType name=programType

javax.el.ELException Select Tag

2009-10-29 Thread Bhaarat Sharma
I have the following code: s:select label=programType id=programType name=programType list=#{'ALL':'All Programs', 'BU':'BY Problems', 'TS':'TS Programs'} value=selectedProgram required=true/ which is giving error: org.apache.jasper.JasperException:

Re: javax.el.ELException Select Tag

2009-10-29 Thread Bhaarat Sharma
furthermore, I have struts-tags.tld in my WEB-INF folder. Are there any other tld's that the select tag depends on On Thu, Oct 29, 2009 at 11:30 AM, Bhaarat Sharma bhaara...@gmail.comwrote: I have the following code: s:select label=programType id=programType name=programType

Re: javax.el.ELException Select Tag

2009-10-29 Thread Dale Newfield
If you indicated that the attribute was OGNL by wrapping it in %{}, the container wouldn't try to parse it as JSTL-EL. -Dale - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional commands, e-mail:

Re: javax.el.ELException Select Tag

2009-10-29 Thread Bhaarat Sharma
so it should be: s:select label=programType id=programType name=programType list=%{'ALL':'All Programs', 'BU':'BY Problems', 'TS':'TS Programs'} value=selectedProgram required=true/ ? On Thu, Oct 29, 2009 at 11:34 AM, Dale Newfield d...@newfield.org wrote: If you

RE: javax.el.ELException Select Tag

2009-10-29 Thread James Cook
Sharma [mailto:bhaara...@gmail.com] Sent: 29 October 2009 15:36 To: Struts Users Mailing List Subject: Re: javax.el.ELException Select Tag so it should be: s:select label=programType id=programType name=programType list=%{'ALL':'All Programs', 'BU':'BY Problems', 'TS':'TS Programs

Re: javax.el.ELException Select Tag

2009-10-29 Thread Bhaarat Sharma
'} value=selectedProgram required=true/ I made the same oversight last night Cookie -Original Message- From: Bhaarat Sharma [mailto:bhaara...@gmail.com] Sent: 29 October 2009 15:36 To: Struts Users Mailing List Subject: Re: javax.el.ELException Select Tag so it should

RE: javax.el.ELException Select Tag

2009-10-29 Thread James Cook
: javax.el.ELException Select Tag you have the same code as my original code ...right? On Thu, Oct 29, 2009 at 11:39 AM, James Cook james.c...@wecomm.com wrote: Should a # s:select label=programType id=programType name=programType list=#{'ALL':'All Programs', 'BU':'BY Problems', 'TS':'TS

Re: javax.el.ELException Select Tag

2009-10-29 Thread Dale Newfield
Bhaarat Sharma wrote: so it should be: s:select label=programType id=programType name=programType list=%{'ALL':'All Programs', 'BU':'BY Problems', 'TS':'TS Programs'} value=selectedProgram required=true/ No: list='%{#{All:All Programs, BU:BY Problems...}}' -Dale

RE: javax.el.ELException Select Tag

2009-10-29 Thread James Cook
#{} worked for me. -Original Message- From: Dale Newfield [mailto:d...@newfield.org] Sent: 29 October 2009 15:54 To: Struts Users Mailing List Subject: Re: javax.el.ELException Select Tag Bhaarat Sharma wrote: so it should be: s:select label=programType id=programType name=programType

Re: javax.el.ELException Select Tag

2009-10-29 Thread Bhaarat Sharma
October 2009 15:54 To: Struts Users Mailing List Subject: Re: javax.el.ELException Select Tag Bhaarat Sharma wrote: so it should be: s:select label=programType id=programType name=programType list=%{'ALL':'All Programs', 'BU':'BY Problems', 'TS':'TS Programs

Re: javax.el.ELException Select Tag

2009-10-29 Thread Bhaarat Sharma
: javax.el.ELException Select Tag Bhaarat Sharma wrote: so it should be: s:select label=programType id=programType name=programType list=%{'ALL':'All Programs', 'BU':'BY Problems', 'TS':'TS Programs'} value=selectedProgram required=true/ No: list='%{#{All:All

Re: javax.el.ELException Select Tag

2009-10-29 Thread Bhaarat Sharma
Newfield [mailto:d...@newfield.org] Sent: 29 October 2009 15:54 To: Struts Users Mailing List Subject: Re: javax.el.ELException Select Tag Bhaarat Sharma wrote: so it should be: s:select label=programType id=programType name=programType list=%{'ALL':'All Programs', 'BU

Re: javax.el.ELException Select Tag

2009-10-29 Thread Bhaarat Sharma
Subject: Re: javax.el.ELException Select Tag Bhaarat Sharma wrote: so it should be: s:select label=programType id=programType name=programType list=%{'ALL':'All Programs', 'BU':'BY Problems', 'TS':'TS Programs'} value=selectedProgram required=true