oh cool. kind of like the map based form? hmmm.. is/could this be coming for <form-bean>/FormBeanConfig and <form-property>/FormPropertyConfig ?
thanx riyaz
Niall Pemberton wrote:
Currently (in 1.2) you can have...
<action path="...."> <set-property property="foo" value="bar"/> </action>
Then you need to have a custom ActionConfig where you implement getFoo() / setFoo(value) methods.
Now it appears you can do the following, without a custom ActionConfig implementation
<action path="...."> <set-property key="foo" value="bar"/> </action>
This will call the setProperty(key, value) method in the ActionConfig - you can then retrieve values using getProperty(key) method - no need for a custom ActionConfig.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
