Posted By:
josef_richberg
Posted On:
Tuesday, March 26, 2002 06:04 AM
I have the following code snippet: type="java.util.Collection"/> then below I have a getter method in my Action form: public Collection getVname(){ return new DBAccess().getVendorNames(); } The problem is if I try to set the result of the selection via this method in the action form: public void setVname(String value){ xxxxxx } it errors with: No getter method for property vname of bean ProdAddForm How do I retrieve the lone value of the select? --josef
More>>
I have the following code snippet:
type="java.util.Collection"/>
then below
I have a getter method in my Action form:
public Collection getVname(){
return new DBAccess().getVendorNames();
}
The problem is if I try to set the result of the selection via this method in the action form:
public void setVname(String value){
xxxxxx
}
it errors with:
No getter method for property vname of bean ProdAddForm
How do I retrieve the lone value of the select?
--josef