Struts dispatch action in DHTML

Explain about struts dispatch action in DHTML.

DispatchAction is an action that comes with Struts 1.1 or later, that let us combine Struts actions into single class, each with their own method. The org.apache.struts.action.DispatchAction class allows multiple operations to map to the different functions in the same Action class.

For Example:
<html:hidden property="dispatch" value="error"/>
<SCRIPT>function set(target) {document. forms[0].dispatch. value=target;}</SCRIPT>
How to upload struts file in DHTML?
How to upload struts file in DHTML? - The interface org.apache.struts.upload.FormFile is used for the struts file upload application. This interface represents a file that has been uploaded by a client.......
Steps used to create a tiles application in DHTML
Steps used to create a tiles application in DHTML - Create a template that designs a layout for your application.......
How do we create a DHTML drop-down menu?
How do we create a DHTML drop-down menu? - In order to create a DHTML drop down menu we need JavaScript API. The API (Application Programming Interface) consists of core set of cross-browser JavaScript functions to make DHTML programming easy and quick........
Post your comment