Re: JSTL- el - nested beans from a map used in a form?

2003-07-03 Thread Sandeep Takhar
indexed=true doesn't seem to help. -Dan - Original Message - From: Rick Reumann [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, June 28, 2003 9:35 AM Subject: JSTL- el - nested beans from a map used in a form? Ok this has me stumped

JSTL- el - nested beans from a map used in a form?

2003-06-28 Thread Rick Reumann
Ok this has me stumped... the down and dirty: formBean has HashMap called fooMap fooMap has keys that bring back beans of type BarBean BarBean has properties someCode , someDescrip Now I want to iterate over this map and create the properties based on the properties in BarBean and be able to

Re: JSTL- el - nested beans from a map used in a form?

2003-06-28 Thread Dan Tran
see this link http://www.strutskickstart.com/IndexedPropertiesandValidation.ppt -Dan - Original Message - From: Rick Reumann [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Saturday, June 28, 2003 9:35 AM Subject: JSTL- el - nested beans from a map used in a form

Re: JSTL- el - nested beans from a map used in a form?

2003-06-28 Thread Rick Reumann
AM Subject: JSTL- el - nested beans from a map used in a form? Ok this has me stumped... the down and dirty: formBean has HashMap called fooMap fooMap has keys that bring back beans of type BarBean BarBean has properties someCode , someDescrip Now I want to iterate

Re: JSTL- el - nested beans from a map used in a form?

2003-06-28 Thread Jason Lea
Hi Rick, Here are some ideas, I haven't tested them so they could be horribly wrong :) The html-el:text tag are just like the html:text tag, but I can evaluate EL expressions. What you want to generate is something like this: someCode: input type=text name=fooMap['aCode'].someCode

Re: JSTL- el - nested beans from a map used in a form?

2003-06-28 Thread Rick Reumann
On Sat, 2003-06-28 at 19:00, Jason Lea wrote: Here are some ideas, I haven't tested them so they could be horribly wrong :) The html-el:text tag are just like the html:text tag, but I can evaluate EL expressions. What you want to generate is something like this: someCode: input

Re: JSTL- el - nested beans from a map used in a form?

2003-06-28 Thread Jason Lea
Hi Rick, Rick Reumann wrote: On Sat, 2003-06-28 at 19:00, Jason Lea wrote: Here are some ideas, I haven't tested them so they could be horribly wrong :) The html-el:text tag are just like the html:text tag, but I can evaluate EL expressions. What you want to generate is something like