Question on embedding tags

2003-02-11 Thread mike . witt
I would like to get the following to work: html:text name=editList property=value size=bean:write name=editList property=fieldLength / / Unfortunately, I get a jsp.error.attribute.noequal error when I do this. I'm assuming that there is a way to delimit this properly, but I haven't found it.

RE: Question on embedding tags

2003-02-11 Thread Sri Sankaran
] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 12:55 PM To: [EMAIL PROTECTED] Subject: Question on embedding tags I would like to get the following to work: html:text name=editList property=value size=bean:write name=editList property=fieldLength / / Unfortunately, I get

RE: Question on embedding tags

2003-02-11 Thread mike . witt
Sri, Thanks for the idea. I think I need to add a type attribute to the bean:define to make it a string. Mike -Original Message- From: Sri Sankaran [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 1:00 PM To: Struts Users Mailing List Subject: RE: Question on embedding tags

Re: Question on embedding tags

2003-02-11 Thread James Mitchell
or: size=%=size.toString()%/ ^^^ -- James Mitchell - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 11, 2003 3:17 PM Subject: RE: Question on embedding tags Sri, Thanks for the idea. I think I need

RE: Question on embedding tags

2003-02-11 Thread mike . witt
Thanks, worked perfectly and it was easier than adding an attribute to my domain layer bean. Mike -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 11, 2003 3:22 PM To: Struts Users Mailing List Subject: Re: Question on embedding tags