Re: cannot find bean error, when cliked on submit button

2006-01-18 Thread Rick Reumann
fea jabi wrote the following on 1/18/2006 9:24 AM: request.set("List1 ", List1 ); Is this exactly what you are trying to type? (Is there even a set method in Request? Also note the extra space you have before the closing quote.) You want request.setAttribute("List1", List1 ); Don't

Re: cannot find bean error, when cliked on submit button

2006-01-18 Thread fea jabi
thanks for sugesting the article. I did implement the way you suggested. Thanks. From: Rick Reumann <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" To: Struts Users Mailing List Subject: Re: cannot find bean error, when cliked on submit button Date: Tue, 17 J

Re: cannot find bean error, when cliked on submit button

2006-01-18 Thread fea jabi
t; > can you tell me how to define the collection in the form-bean so that it can be accessed by the JSP? As I tried this before and was not successful. Thanks. From: Michael Jouravlev <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" T

Re: cannot find bean error, when cliked on submit button

2006-01-17 Thread Michael Jouravlev
> In the JSP have comboboxes. > > PrepareFacilityAction > > . > > request.setAttribute("List1", getList1(form)); > ... > ... > > The Jsp the combox is filled > ... > .. > > property="value" labelProperty="label"/> >

Re: cannot find bean error, when cliked on submit button

2006-01-17 Thread Rick Reumann
fea jabi wrote the following on 1/17/2006 3:40 PM: The JSP displayes fine with all the values in it. This JSP has required fields in it. Used validator.xml to define al lthe required fields. There is a Save Button which is the submit button in the JSP. When clicked on Save want the validation