Action.js
上传用户:shuoshiled
上传日期:2018-01-28
资源大小:10124k
文件大小:22k
源码类别:

中间件编程

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.0.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.form.Action
  9.  * <p>The subclasses of this class provide actions to perform upon {@link Ext.form.BasicForm Form}s.</p>
  10.  * <p>Instances of this class are only created by a {@link Ext.form.BasicForm Form} when
  11.  * the Form needs to perform an action such as submit or load. The Configuration options
  12.  * listed for this class are set through the Form's action methods: {@link Ext.form.BasicForm#submit submit},
  13.  * {@link Ext.form.BasicForm#load load} and {@link Ext.form.BasicForm#doAction doAction}</p>
  14.  * <p>The instance of Action which performed the action is passed to the success
  15.  * and failure callbacks of the Form's action methods ({@link Ext.form.BasicForm#submit submit},
  16.  * {@link Ext.form.BasicForm#load load} and {@link Ext.form.BasicForm#doAction doAction}),
  17.  * and to the {@link Ext.form.BasicForm#actioncomplete actioncomplete} and
  18.  * {@link Ext.form.BasicForm#actionfailed actionfailed} event handlers.</p>
  19.  */
  20. Ext.form.Action = function(form, options){
  21.     this.form = form;
  22.     this.options = options || {};
  23. };
  24. /**
  25.  * Failure type returned when client side validation of the Form fails
  26.  * thus aborting a submit action. Client side validation is performed unless
  27.  * {@link #clientValidation} is explicitly set to <tt>false</tt>.
  28.  * @type {String}
  29.  * @static
  30.  */
  31. Ext.form.Action.CLIENT_INVALID = 'client';
  32. /**
  33.  * <p>Failure type returned when server side processing fails and the {@link #result}'s
  34.  * <tt style="font-weight:bold">success</tt> property is set to <tt>false</tt>.</p>
  35.  * <p>In the case of a form submission, field-specific error messages may be returned in the
  36.  * {@link #result}'s <tt style="font-weight:bold">errors</tt> property.</p>
  37.  * @type {String}
  38.  * @static
  39.  */
  40. Ext.form.Action.SERVER_INVALID = 'server';
  41. /**
  42.  * Failure type returned when a communication error happens when attempting
  43.  * to send a request to the remote server. The {@link #response} may be examined to
  44.  * provide further information.
  45.  * @type {String}
  46.  * @static
  47.  */
  48. Ext.form.Action.CONNECT_FAILURE = 'connect';
  49. /**
  50.  * Failure type returned when the response's <tt style="font-weight:bold">success</tt>
  51.  * property is set to <tt>false</tt>, or no field values are returned in the response's
  52.  * <tt style="font-weight:bold">data</tt> property.
  53.  * @type {String}
  54.  * @static
  55.  */
  56. Ext.form.Action.LOAD_FAILURE = 'load';
  57. Ext.form.Action.prototype = {
  58. /**
  59.  * @cfg {String} url The URL that the Action is to invoke.
  60.  */
  61. /**
  62.  * @cfg {Boolean} reset When set to <tt><b>true</b></tt>, causes the Form to be
  63.  * {@link Ext.form.BasicForm.reset reset} on Action success. If specified, this happens
  64.  * <b>before</b> the {@link #success} callback is called and before the Form's
  65.  * {@link Ext.form.BasicForm.actioncomplete actioncomplete} event fires.
  66.  */
  67. /**
  68.  * @cfg {String} method The HTTP method to use to access the requested URL. Defaults to the
  69.  * {@link Ext.form.BasicForm}'s method, or if that is not specified, the underlying DOM form's method.
  70.  */
  71. /**
  72.  * @cfg {Mixed} params <p>Extra parameter values to pass. These are added to the Form's
  73.  * {@link Ext.form.BasicForm#baseParams} and passed to the specified URL along with the Form's
  74.  * input fields.</p>
  75.  * <p>Parameters are encoded as standard HTTP parameters using {@link Ext#urlEncode}.</p>
  76.  */
  77. /**
  78.  * @cfg {Number} timeout The number of seconds to wait for a server response before
  79.  * failing with the {@link #failureType} as {@link #Action.CONNECT_FAILURE}. If not specified,
  80.  * defaults to the configured <tt>{@link Ext.form.BasicForm#timeout timeout}</tt> of the
  81.  * {@link Ext.form.BasicForm form}.
  82.  */
  83. /**
  84.  * @cfg {Function} success The function to call when a valid success return packet is recieved.
  85.  * The function is passed the following parameters:<ul class="mdetail-params">
  86.  * <li><b>form</b> : Ext.form.BasicForm<div class="sub-desc">The form that requested the action</div></li>
  87.  * <li><b>action</b> : Ext.form.Action<div class="sub-desc">The Action class. The {@link #result}
  88.  * property of this object may be examined to perform custom postprocessing.</div></li>
  89.  * </ul>
  90.  */
  91. /**
  92.  * @cfg {Function} failure The function to call when a failure packet was recieved, or when an
  93.  * error ocurred in the Ajax communication.
  94.  * The function is passed the following parameters:<ul class="mdetail-params">
  95.  * <li><b>form</b> : Ext.form.BasicForm<div class="sub-desc">The form that requested the action</div></li>
  96.  * <li><b>action</b> : Ext.form.Action<div class="sub-desc">The Action class. If an Ajax
  97.  * error ocurred, the failure type will be in {@link #failureType}. The {@link #result}
  98.  * property of this object may be examined to perform custom postprocessing.</div></li>
  99.  * </ul>
  100.  */
  101. /**
  102.  * @cfg {Object} scope The scope in which to call the callback functions (The <tt>this</tt> reference
  103.  * for the callback functions).
  104.  */
  105. /**
  106.  * @cfg {String} waitMsg The message to be displayed by a call to {@link Ext.MessageBox#wait}
  107.  * during the time the action is being processed.
  108.  */
  109. /**
  110.  * @cfg {String} waitTitle The title to be displayed by a call to {@link Ext.MessageBox#wait}
  111.  * during the time the action is being processed.
  112.  */
  113. /**
  114.  * The type of action this Action instance performs.
  115.  * Currently only "submit" and "load" are supported.
  116.  * @type {String}
  117.  */
  118.     type : 'default',
  119. /**
  120.  * The type of failure detected will be one of these: {@link #CLIENT_INVALID},
  121.  * {@link #SERVER_INVALID}, {@link #CONNECT_FAILURE}, or {@link #LOAD_FAILURE}.  Usage:
  122.  * <pre><code>
  123. var fp = new Ext.form.FormPanel({
  124. ...
  125. buttons: [{
  126.     text: 'Save',
  127.     formBind: true,
  128.     handler: function(){
  129.         if(fp.getForm().isValid()){
  130.             fp.getForm().submit({
  131.                 url: 'form-submit.php',
  132.                 waitMsg: 'Submitting your data...',
  133.                 success: function(form, action){
  134.                     // server responded with success = true
  135.                     var result = action.{@link #result};
  136.                 },
  137.                 failure: function(form, action){
  138.                     if (action.{@link #failureType} === Ext.form.Action.{@link #CONNECT_FAILURE}) {
  139.                         Ext.Msg.alert('Error',
  140.                             'Status:'+action.{@link #response}.status+': '+
  141.                             action.{@link #response}.statusText);
  142.                     }
  143.                     if (action.failureType === Ext.form.Action.{@link #SERVER_INVALID}){
  144.                         // server responded with success = false
  145.                         Ext.Msg.alert('Invalid', action.{@link #result}.errormsg);
  146.                     }
  147.                 }
  148.             });
  149.         }
  150.     }
  151. },{
  152.     text: 'Reset',
  153.     handler: function(){
  154.         fp.getForm().reset();
  155.     }
  156. }]
  157.  * </code></pre>
  158.  * @property failureType
  159.  * @type {String}
  160.  */
  161.  /**
  162.  * The XMLHttpRequest object used to perform the action.
  163.  * @property response
  164.  * @type {Object}
  165.  */
  166.  /**
  167.  * The decoded response object containing a boolean <tt style="font-weight:bold">success</tt> property and
  168.  * other, action-specific properties.
  169.  * @property result
  170.  * @type {Object}
  171.  */
  172.     // interface method
  173.     run : function(options){
  174.     },
  175.     // interface method
  176.     success : function(response){
  177.     },
  178.     // interface method
  179.     handleResponse : function(response){
  180.     },
  181.     // default connection failure
  182.     failure : function(response){
  183.         this.response = response;
  184.         this.failureType = Ext.form.Action.CONNECT_FAILURE;
  185.         this.form.afterAction(this, false);
  186.     },
  187.     // private
  188.     // shared code among all Actions to validate that there was a response
  189.     // with either responseText or responseXml
  190.     processResponse : function(response){
  191.         this.response = response;
  192.         if(!response.responseText && !response.responseXML){
  193.             return true;
  194.         }
  195.         this.result = this.handleResponse(response);
  196.         return this.result;
  197.     },
  198.     // utility functions used internally
  199.     getUrl : function(appendParams){
  200.         var url = this.options.url || this.form.url || this.form.el.dom.action;
  201.         if(appendParams){
  202.             var p = this.getParams();
  203.             if(p){
  204.                 url = Ext.urlAppend(url, p);
  205.             }
  206.         }
  207.         return url;
  208.     },
  209.     // private
  210.     getMethod : function(){
  211.         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
  212.     },
  213.     // private
  214.     getParams : function(){
  215.         var bp = this.form.baseParams;
  216.         var p = this.options.params;
  217.         if(p){
  218.             if(typeof p == "object"){
  219.                 p = Ext.urlEncode(Ext.applyIf(p, bp));
  220.             }else if(typeof p == 'string' && bp){
  221.                 p += '&' + Ext.urlEncode(bp);
  222.             }
  223.         }else if(bp){
  224.             p = Ext.urlEncode(bp);
  225.         }
  226.         return p;
  227.     },
  228.     // private
  229.     createCallback : function(opts){
  230.         var opts = opts || {};
  231.         return {
  232.             success: this.success,
  233.             failure: this.failure,
  234.             scope: this,
  235.             timeout: (opts.timeout*1000) || (this.form.timeout*1000),
  236.             upload: this.form.fileUpload ? this.success : undefined
  237.         };
  238.     }
  239. };
  240. /**
  241.  * @class Ext.form.Action.Submit
  242.  * @extends Ext.form.Action
  243.  * <p>A class which handles submission of data from {@link Ext.form.BasicForm Form}s
  244.  * and processes the returned response.</p>
  245.  * <p>Instances of this class are only created by a {@link Ext.form.BasicForm Form} when
  246.  * {@link Ext.form.BasicForm#submit submit}ting.</p>
  247.  * <p><u><b>Response Packet Criteria</b></u></p>
  248.  * <p>A response packet may contain:
  249.  * <div class="mdetail-params"><ul>
  250.  * <li><b><code>success</code></b> property : Boolean
  251.  * <div class="sub-desc">The <code>success</code> property is required.</div></li>
  252.  * <li><b><code>errors</code></b> property : Object
  253.  * <div class="sub-desc"><div class="sub-desc">The <code>errors</code> property,
  254.  * which is optional, contains error messages for invalid fields.</div></li>
  255.  * </ul></div>
  256.  * <p><u><b>JSON Packets</b></u></p>
  257.  * <p>By default, response packets are assumed to be JSON, so a typical response
  258.  * packet may look like this:</p><pre><code>
  259. {
  260.     success: false,
  261.     errors: {
  262.         clientCode: "Client not found",
  263.         portOfLoading: "This field must not be null"
  264.     }
  265. }</code></pre>
  266.  * <p>Other data may be placed into the response for processing by the {@link Ext.form.BasicForm}'s callback
  267.  * or event handler methods. The object decoded from this JSON is available in the
  268.  * {@link Ext.form.Action#result result} property.</p>
  269.  * <p>Alternatively, if an {@link #errorReader} is specified as an {@link Ext.data.XmlReader XmlReader}:</p><pre><code>
  270.     errorReader: new Ext.data.XmlReader({
  271.             record : 'field',
  272.             success: '@success'
  273.         }, [
  274.             'id', 'msg'
  275.         ]
  276.     )
  277. </code></pre>
  278.  * <p>then the results may be sent back in XML format:</p><pre><code>
  279. &lt;?xml version="1.0" encoding="UTF-8"?&gt;
  280. &lt;message success="false"&gt;
  281. &lt;errors&gt;
  282.     &lt;field&gt;
  283.         &lt;id&gt;clientCode&lt;/id&gt;
  284.         &lt;msg&gt;&lt;![CDATA[Code not found. &lt;br /&gt;&lt;i&gt;This is a test validation message from the server &lt;/i&gt;]]&gt;&lt;/msg&gt;
  285.     &lt;/field&gt;
  286.     &lt;field&gt;
  287.         &lt;id&gt;portOfLoading&lt;/id&gt;
  288.         &lt;msg&gt;&lt;![CDATA[Port not found. &lt;br /&gt;&lt;i&gt;This is a test validation message from the server &lt;/i&gt;]]&gt;&lt;/msg&gt;
  289.     &lt;/field&gt;
  290. &lt;/errors&gt;
  291. &lt;/message&gt;
  292. </code></pre>
  293.  * <p>Other elements may be placed into the response XML for processing by the {@link Ext.form.BasicForm}'s callback
  294.  * or event handler methods. The XML document is available in the {@link #errorReader}'s {@link Ext.data.XmlReader#xmlData xmlData} property.</p>
  295.  */
  296. Ext.form.Action.Submit = function(form, options){
  297.     Ext.form.Action.Submit.superclass.constructor.call(this, form, options);
  298. };
  299. Ext.extend(Ext.form.Action.Submit, Ext.form.Action, {
  300.     /**
  301.      * @cfg {Ext.data.DataReader} errorReader <p><b>Optional. JSON is interpreted with
  302.      * no need for an errorReader.</b></p>
  303.      * <p>A Reader which reads a single record from the returned data. The DataReader's
  304.      * <b>success</b> property specifies how submission success is determined. The Record's
  305.      * data provides the error messages to apply to any invalid form Fields.</p>
  306.      */
  307.     /**
  308.      * @cfg {boolean} clientValidation Determines whether a Form's fields are validated
  309.      * in a final call to {@link Ext.form.BasicForm#isValid isValid} prior to submission.
  310.      * Pass <tt>false</tt> in the Form's submit options to prevent this. If not defined, pre-submission field validation
  311.      * is performed.
  312.      */
  313.     type : 'submit',
  314.     // private
  315.     run : function(){
  316.         var o = this.options;
  317.         var method = this.getMethod();
  318.         var isGet = method == 'GET';
  319.         if(o.clientValidation === false || this.form.isValid()){
  320.             Ext.Ajax.request(Ext.apply(this.createCallback(o), {
  321.                 form:this.form.el.dom,
  322.                 url:this.getUrl(isGet),
  323.                 method: method,
  324.                 headers: o.headers,
  325.                 params:!isGet ? this.getParams() : null,
  326.                 isUpload: this.form.fileUpload
  327.             }));
  328.         }else if (o.clientValidation !== false){ // client validation failed
  329.             this.failureType = Ext.form.Action.CLIENT_INVALID;
  330.             this.form.afterAction(this, false);
  331.         }
  332.     },
  333.     // private
  334.     success : function(response){
  335.         var result = this.processResponse(response);
  336.         if(result === true || result.success){
  337.             this.form.afterAction(this, true);
  338.             return;
  339.         }
  340.         if(result.errors){
  341.             this.form.markInvalid(result.errors);
  342.             this.failureType = Ext.form.Action.SERVER_INVALID;
  343.         }
  344.         this.form.afterAction(this, false);
  345.     },
  346.     // private
  347.     handleResponse : function(response){
  348.         if(this.form.errorReader){
  349.             var rs = this.form.errorReader.read(response);
  350.             var errors = [];
  351.             if(rs.records){
  352.                 for(var i = 0, len = rs.records.length; i < len; i++) {
  353.                     var r = rs.records[i];
  354.                     errors[i] = r.data;
  355.                 }
  356.             }
  357.             if(errors.length < 1){
  358.                 errors = null;
  359.             }
  360.             return {
  361.                 success : rs.success,
  362.                 errors : errors
  363.             };
  364.         }
  365.         return Ext.decode(response.responseText);
  366.     }
  367. });
  368. /**
  369.  * @class Ext.form.Action.Load
  370.  * @extends Ext.form.Action
  371.  * <p>A class which handles loading of data from a server into the Fields of an {@link Ext.form.BasicForm}.</p>
  372.  * <p>Instances of this class are only created by a {@link Ext.form.BasicForm Form} when
  373.  * {@link Ext.form.BasicForm#load load}ing.</p>
  374.  * <p><u><b>Response Packet Criteria</b></u></p>
  375.  * <p>A response packet <b>must</b> contain:
  376.  * <div class="mdetail-params"><ul>
  377.  * <li><b><code>success</code></b> property : Boolean</li>
  378.  * <li><b><code>data</code></b> property : Object</li>
  379.  * <div class="sub-desc">The <code>data</code> property contains the values of Fields to load.
  380.  * The individual value object for each Field is passed to the Field's
  381.  * {@link Ext.form.Field#setValue setValue} method.</div></li>
  382.  * </ul></div>
  383.  * <p><u><b>JSON Packets</b></u></p>
  384.  * <p>By default, response packets are assumed to be JSON, so for the following form load call:<pre><code>
  385. var myFormPanel = new Ext.form.FormPanel({
  386.     title: 'Client and routing info',
  387.     items: [{
  388.         fieldLabel: 'Client',
  389.         name: 'clientName'
  390.     }, {
  391.         fieldLabel: 'Port of loading',
  392.         name: 'portOfLoading'
  393.     }, {
  394.         fieldLabel: 'Port of discharge',
  395.         name: 'portOfDischarge'
  396.     }]
  397. });
  398. myFormPanel.{@link Ext.form.FormPanel#getForm getForm}().{@link Ext.form.BasicForm#load load}({
  399.     url: '/getRoutingInfo.php',
  400.     params: {
  401.         consignmentRef: myConsignmentRef
  402.     },
  403.     failure: function(form, action() {
  404.         Ext.Msg.alert("Load failed", action.result.errorMessage);
  405.     }
  406. });
  407. </code></pre>
  408.  * a <b>success response</b> packet may look like this:</p><pre><code>
  409. {
  410.     success: true,
  411.     data: {
  412.         clientName: "Fred. Olsen Lines",
  413.         portOfLoading: "FXT",
  414.         portOfDischarge: "OSL"
  415.     }
  416. }</code></pre>
  417.  * while a <b>failure response</b> packet may look like this:</p><pre><code>
  418. {
  419.     success: false,
  420.     errorMessage: "Consignment reference not found"
  421. }</code></pre>
  422.  * <p>Other data may be placed into the response for processing the {@link Ext.form.BasicForm Form}'s
  423.  * callback or event handler methods. The object decoded from this JSON is available in the
  424.  * {@link Ext.form.Action#result result} property.</p>
  425.  */
  426. Ext.form.Action.Load = function(form, options){
  427.     Ext.form.Action.Load.superclass.constructor.call(this, form, options);
  428.     this.reader = this.form.reader;
  429. };
  430. Ext.extend(Ext.form.Action.Load, Ext.form.Action, {
  431.     // private
  432.     type : 'load',
  433.     // private
  434.     run : function(){
  435.         Ext.Ajax.request(Ext.apply(
  436.                 this.createCallback(this.options), {
  437.                     method:this.getMethod(),
  438.                     url:this.getUrl(false),
  439.                     headers: this.options.headers,
  440.                     params:this.getParams()
  441.         }));
  442.     },
  443.     // private
  444.     success : function(response){
  445.         var result = this.processResponse(response);
  446.         if(result === true || !result.success || !result.data){
  447.             this.failureType = Ext.form.Action.LOAD_FAILURE;
  448.             this.form.afterAction(this, false);
  449.             return;
  450.         }
  451.         this.form.clearInvalid();
  452.         this.form.setValues(result.data);
  453.         this.form.afterAction(this, true);
  454.     },
  455.     // private
  456.     handleResponse : function(response){
  457.         if(this.form.reader){
  458.             var rs = this.form.reader.read(response);
  459.             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
  460.             return {
  461.                 success : rs.success,
  462.                 data : data
  463.             };
  464.         }
  465.         return Ext.decode(response.responseText);
  466.     }
  467. });
  468. /**
  469.  * @class Ext.form.Action.DirectLoad
  470.  * @extends Ext.form.Action.Load
  471.  * Provides Ext.direct support for loading form data. This example illustrates usage
  472.  * of Ext.Direct to load a submit a form through Ext.Direct.
  473.  * <pre><code>
  474. var myFormPanel = new Ext.form.FormPanel({
  475.     // configs for FormPanel
  476.     title: 'Basic Information',
  477.     border: false,
  478.     padding: 10,
  479.     buttons:[{
  480.         text: 'Submit',
  481.         handler: function(){
  482.             basicInfo.getForm().submit({
  483.                 params: {
  484.                     uid: 5
  485.                 }
  486.             });
  487.         }
  488.     }],
  489.     
  490.     // configs apply to child items
  491.     defaults: {anchor: '100%'},
  492.     defaultType: 'textfield',
  493.     items: [
  494.         // form fields go here
  495.     ],
  496.     
  497.     // configs for BasicForm
  498.     api: {
  499.         load: Profile.getBasicInfo,
  500.         // The server-side must mark the submit handler as a 'formHandler'
  501.         submit: Profile.updateBasicInfo
  502.     },    
  503.     paramOrder: ['uid']
  504. });
  505. // load the form
  506. myFormPanel.getForm().load({
  507.     params: {
  508.         uid: 5
  509.     }
  510. });
  511.  * </code></pre>
  512.  */
  513. Ext.form.Action.DirectLoad = Ext.extend(Ext.form.Action.Load, {
  514.     constructor: function(form, opts) {        
  515.         Ext.form.Action.DirectLoad.superclass.constructor.call(this, form, opts);
  516.     },
  517.     type: 'directload',
  518.     
  519.     run : function(){
  520.         var args = this.getParams();
  521.         args.push(this.success, this);                
  522.         this.form.api.load.apply(window, args);
  523.     },
  524.     
  525.     getParams: function() {
  526.         var buf = [], o = {};
  527.         var bp = this.form.baseParams;
  528.         var p = this.options.params;
  529.         Ext.apply(o, p, bp);
  530.         var paramOrder = this.form.paramOrder;
  531.         if(paramOrder){
  532.             for(var i = 0, len = paramOrder.length; i < len; i++){
  533.                 buf.push(o[paramOrder[i]]);
  534.             }
  535.         }else if(this.form.paramsAsHash){
  536.             buf.push(o);
  537.         }
  538.         return buf;
  539.     },
  540.     // Direct actions have already been processed and therefore
  541.     // we can directly set the result; Direct Actions do not have
  542.     // a this.response property.
  543.     processResponse: function(result) {
  544.         this.result = result;
  545.         return result;          
  546.     }
  547. });
  548. /**
  549.  * @class Ext.form.Action.DirectSubmit
  550.  * @extends Ext.form.Action.Submit
  551.  * Provides Ext.direct support for submitting form data.
  552.  * See {@link Ext.form.Action.DirectLoad}.
  553.  */
  554. Ext.form.Action.DirectSubmit = Ext.extend(Ext.form.Action.Submit, {
  555.     constructor: function(form, opts) {
  556.         Ext.form.Action.DirectSubmit.superclass.constructor.call(this, form, opts);
  557.     },
  558.     type: 'directsubmit',
  559.     // override of Submit
  560.     run : function(){
  561.         var o = this.options;
  562.         if(o.clientValidation === false || this.form.isValid()){
  563.             // tag on any additional params to be posted in the
  564.             // form scope
  565.             this.success.params = this.getParams();
  566.             this.form.api.submit(this.form.el.dom, this.success, this);
  567.         }else if (o.clientValidation !== false){ // client validation failed
  568.             this.failureType = Ext.form.Action.CLIENT_INVALID;
  569.             this.form.afterAction(this, false);
  570.         }
  571.     },
  572.     
  573.     getParams: function() {
  574.         var o = {};
  575.         var bp = this.form.baseParams;
  576.         var p = this.options.params;
  577.         Ext.apply(o, p, bp);
  578.         return o;
  579.     },    
  580.     // Direct actions have already been processed and therefore
  581.     // we can directly set the result; Direct Actions do not have
  582.     // a this.response property.
  583.     processResponse: function(result) {
  584.         this.result = result;
  585.         return result;          
  586.     }
  587. });
  588. Ext.form.Action.ACTION_TYPES = {
  589.     'load' : Ext.form.Action.Load,
  590.     'submit' : Ext.form.Action.Submit,
  591.     'directload': Ext.form.Action.DirectLoad,
  592.     'directsubmit': Ext.form.Action.DirectSubmit
  593. };