I have some forms where I only a couple of form field elements. So instead of
creating a physical bean, I decided to try using the
org.apache.struts.action.DynaActionForm. Anyway, all was good with validation,
etc. But I ran into an issue when I tried to retrieve the values from my form
in the ActionForm.
When I used a bean I would just ask for the property by casting off to the bean.
String myVal = ((com.myBean)form).getMyVal();
But I cannot figure out how to get the value when there is no physical bean.
Anyone know how to get around this?
Thanks
Scott