RE: html-el oddities

2005-02-25 Thread Trevor Hill
, --Trevor -Original Message- From: Trevor Hill Sent: February 23, 2005 4:45 PM To: Struts Users Mailing List Subject: RE: html-el oddities Forgive me for coming off as incredibly dense here: I'm not sure what a BeanInfo class is or how it fits into the whole struts-el-action-form

RE: html-el oddities

2005-02-23 Thread Trevor Hill
, --Trevor -Original Message- From: Karr, David [mailto:[EMAIL PROTECTED] Sent: February 16, 2005 3:16 PM To: Struts Users Mailing List Subject: RE: html-el oddities I suggest you set this up so you can step through this in your debugger. My theory is that somehow the association

RE: html-el oddities

2005-02-16 Thread Karr, David
Hill [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 15, 2005 8:11 AM To: Struts Users Mailing List Subject: RE: html-el oddities Thanks -- your option (2) seems to be working fairly well for me now. I still have to see if struts will accept the faked up input tag and stick the data

RE: html-el oddities

2005-02-15 Thread Trevor Hill
- From: Trevor Hill Sent: February 14, 2005 8:33 AM To: Struts Users Mailing List Subject: RE: html-el oddities As I said in my original question, I had tried 'cur.prdNumber' and had the same result, and so had tried shoving the value of cur.prdNumber into a page-scoped variable named

RE: html-el oddities

2005-02-15 Thread Woodchuck
, but cannot find any old 1.1 documentation to work from. Thanks, --Trevor -Original Message- From: Trevor Hill Sent: February 14, 2005 8:33 AM To: Struts Users Mailing List Subject: RE: html-el oddities As I said in my original question, I had tried 'cur.prdNumber' and had

Re: html-el oddities

2005-02-15 Thread Wendy Smoak
From: Trevor Hill [EMAIL PROTECTED] I'm limited to using 1.1 only, but cannot find any old 1.1 documentation to work from. There should be a 'struts-documentation.war' contained in the 1.1 distribution. That will have docs that match what's in 1.1, as opposed to the more current ones on the

RE: html-el oddities

2005-02-15 Thread Trevor Hill
15, 2005 10:31 AM To: Struts Users Mailing List Subject: RE: html-el oddities i can think of 2 things you can try: 1) use logic:iterate instead of c:forEach i have found that jstl-scoped objects do not always work well with struts tags 2) simply don't use the html-el:text tag you can achieve

RE: html-el oddities

2005-02-15 Thread Woodchuck
) It seems odd that the EL tag does everything except actually do the EL-evaulation. --Trevor -Original Message- From: Woodchuck [mailto:[EMAIL PROTECTED] Sent: February 15, 2005 10:31 AM To: Struts Users Mailing List Subject: RE: html-el oddities i can think of 2 things

RE: html-el oddities

2005-02-14 Thread Trevor Hill
. -Original Message- From: Jason Lea [mailto:[EMAIL PROTECTED] Sent: February 11, 2005 4:54 PM To: Struts Users Mailing List Subject: Re: html-el oddities I think you are missing a dot :) cur.PrdNumber not curPrdNumber Try: input type=text name=quantity(${cur.PrdNumber}) maxlength=5 size=3 value=/td

html-el oddities

2005-02-11 Thread Trevor Hill
I'm having an interesting issue. I have a form in which the only input is a bunch of text boxes which correspond to quantities of products. The associated form thus consists of just a HashMap. My JSP page is as follows: ... header stuff ... tr thProduct/th thProduct Number/th