Re: How to use bean property as value for html hidden field

2005-05-28 Thread Jim Coble
, NC 27708-0198 == Michael Jouravlev <[EMAIL PROTECTED]> 05/27/2005 01:30 PM Please respond to "Struts Users Mailing List" To Struts Users Mailing List cc Subject Re: How to use bean property as value for html hidden field Though it does not seem to be docum

Re: How to use bean property as value for html hidden field

2005-05-27 Thread Wendy Smoak
From: "Durham David R Jr Ctr 805 CSPTS/SCE" <[EMAIL PROTECTED]> >> You cannot nest JSP tags. >Strictly speaking, you can nest tags, but you can't use a tag as an >attribute to another tag. What he said. Darn. :) I wrote a long explanation then decided it was irrelevant... and shortened it to

Re: How to use bean property as value for html hidden field

2005-05-27 Thread Michael Jouravlev
Though it does not seem to be documented well, but some (many, all?) tags support textual content, like a regular XML element. This would look kind of like this: I haven't tried it, but this might work. Michael. On 5/27/05, Jim Coble <[EMAIL PROTECTED]> wrote: > In my JSP html:form, I

RE: How to use bean property as value for html hidden field

2005-05-27 Thread Durham David R Jr Ctr 805 CSPTS/SCE
> You cannot nest JSP tags. Strictly speaking, you can nest tags, but you can't use a tag as an attribute to another tag. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to use bean property as value for html hidden field

2005-05-27 Thread Wendy Smoak
From: "Jim Coble" <[EMAIL PROTECTED]> > In my JSP html:form, I want to have the value of a hidden field set to the > (String) value of a property of a request-scoped attribute. I tried using > a "bean:write" as the argument to the "value=" property of the > "html:hidden" tag, like this ... > > p