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 your

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. snip/ On the other hand, if I'm wrong, and WSAD 5.1 is a JSP 2.0 container, snap/ 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

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 html:text property=itemization_Line1CashPrice style=width:90px styleClass=textField onfocus=this.select(); this.className='fieldActive' onblur=this.className='fieldInactive'; reCalcFields(%=executionState}%); size=4

[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 unsubscribe,

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 user@struts.apache.org To: Struts Users Mailing List user@struts.apache.org Subject: [OT] Re: embed jstl or other struts tag or scriplets within html:text Date: Fri, 30 Sep

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

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

2005-09-30 Thread Gary VanMatre
] Reply-To: Struts Users Mailing List user@struts.apache.org To: Struts Users Mailing List user@struts.apache.org Subject: [OT] Re: embed jstl or other struts tag or scriplets within html:text Date: Fri, 30 Sep 2005 15:36:17 -0400 Dilip Ladhani wrote: This does not work for me at all. Anyone

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

2005-09-30 Thread Greg Ludington
html:text property=itemization_Line1CashPrice style=width:90px 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