DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=31373>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=31373

Enhancements in DynaActionForm

           Summary: Enhancements in DynaActionForm
           Product: Struts
           Version: Unknown
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Enhancement
          Priority: Other
         Component: Controller
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


1.- make DynaActionForm implements java.util.Map interface
    benefits:

    you can use the EL lenguaje better for example for access
    a propertie of the DynaActionForm you have to do:

    <c:out  value="${revertion_consult.map.year}" />

    with this enhancement you only need to do:      
    <c:out  value="${revertion_consult.year}" />

2.- add a constructor DynaActionForm(java.util.map map)
    where the key of the map is a property 
    benefits:
    
    You can create a DynaActionForm dinamically on the fly
    This is useful when you want to initialice a DynaActionForm
    to dinamic default values. You can create de DynaActionForm
    and put it in the right context(session,request) in an Action

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to