Re: embed jstl or other struts tag or scriplets within html:text

2005-10-01 Thread Rahul Akolkar
On 10/1/05, Karr, David <[EMAIL PROTECTED]> wrote: > Ok. Several things here. > On the other hand, if I'm wrong, and WSAD 5.1 is a JSP 2.0 container, You're right :-) WSAD 5.x (WAS, really) is J2EE 1.2/1.3 (you can pick which one), WSAD 6.x has J2EE 1.4 as well (and, by transitivity. JSP 2.0).

RE: embed jstl or other struts tag or scriplets within html:text

2005-10-01 Thread Karr, David
Ok. Several things here. 1. If you use "runtime" expressions for attributes in JSP, the runtime expression has to be the entire attribute value, not just a portion, so you would have (approximately): onblur='<%= "this" + ... + "reCalcFields(" + executionState + ");" %>' However, assuming

Re: embed jstl or other struts tag or scriplets within html:text

2005-09-30 Thread Greg Ludington
> styleClass="textField" onfocus="this.select(); this.className='fieldActive'" > onblur="this.className='fieldInactive'; reCalcFields(<%=executionState}%>);" > size="4" maxlength="10" /> Two comments: 1) You have a closed curly brace in that attribute -- I am assuming that is a typo in this email

RE: [OT] Re: embed jstl or other struts tag or scriplets within html:text

2005-09-30 Thread Gary VanMatre
t;[EMAIL PROTECTED]> > >Reply-To: "Struts Users Mailing List" > >To: Struts Users Mailing List > >Subject: [OT] Re: embed jstl or other struts tag or scriplets within > >html:text > >Date: Fri, 30 Sep 2005 15:36:17 -0400 > > > >Dilip Ladha

Re: [OT] Re: embed jstl or other struts tag or scriplets within html:text

2005-09-30 Thread Dave Newton
Dilip Ladhani wrote: I am on websphere/wsad 5.1. Do I have to use EL I have no idea. Perhaps you could look in your documentation or on the web: I'll just bet it says somewhere. Dave - To unsubscribe, e-mail: [EMAIL PROT

RE: [OT] Re: embed jstl or other struts tag or scriplets within html:text

2005-09-30 Thread Dilip Ladhani
I am on websphere/wsad 5.1. Do I have to use EL From: Dave Newton <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: [OT] Re: embed jstl or other struts tag or scriplets within html:text Date: Fri, 30 Sep 2005 15:36:17 -040

[OT] Re: embed jstl or other struts tag or scriplets within html:text

2005-09-30 Thread Dave Newton
Dilip Ladhani wrote: This does not work for me at all. Anyone have any ideas Yep; use a JSP 2.0-compliant container or the struts EL tags and replace "<%= executionState %>" with "${executionState}". Dave - To unsubscrib

embed jstl or other struts tag or scriplets within html:text

2005-09-30 Thread Dilip Ladhani
Hey guys, This does not work for me at all. Anyone have any ideas styleClass="textField" onfocus="this.select(); this.className='fieldActive'" onblur="this.className='fieldInactive'; reCalcFields(<%=executionState}%>);" size="4" maxlength="10" /> I have tried to put jstl (), other struts ta