RE: Problem with mapped properties

2002-01-15 Thread Rey Francois
I'm not really sure in understand you problem but in order for "property(key)" to work, you need to have the following methods on your form bean: public Object getProperty(String key) public void setProperty(String key, Object value) These methods typically store your property values in a

Re: Problem with mapped properties

2002-01-15 Thread Peter Pilgrim
Unfortunately, this is limitiation of the JSP 1.1 specification You have to supply directly complete "java.lang.Strings" to any custom tag attributes. Spec says nothing about partial dynamic values. Here is the solution: % String key = "EMPLOYEE_PAYROLL_ID"; String prop_key =