Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

No Format
<action path="/yourAction" type="org.mifos.application........struts.action.YourAction"
  name="youractionform" parameter="method" input="/yourAction.do?method=validate"
  validate="true" scope="session">
<forward name="load_success" path="... " />
<forward name="load_success" path="... " />
<forward name="load_success" path="... " />	
</action>``

  1. Add validation rules to validation.xml (META-INF folder)
  2. If define new resource file add this line to *-struts-config.xml
    No Format
    <!--  Your Story resources -->
    <message-resources key="yourStoryUIResources" parameter="org.mifos.application.....util.resources.YourUIResources" 
    </message-resources>
    

Note that if the key is yourStoryUIResources then you have to define the same in your resource file. For example, yourStoryUIResources.define=Define

...