Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / docs / source / StandardSubmit.html
1 <!DOCTYPE html><html><head><title>Sencha Documentation Project</title><link rel="stylesheet" href="../reset.css" type="text/css"><link rel="stylesheet" href="../prettify.css" type="text/css"><link rel="stylesheet" href="../prettify_sa.css" type="text/css"><script type="text/javascript" src="../prettify.js"></script></head><body onload="prettyPrint()"><pre class="prettyprint"><pre><span id='Ext-form.action.StandardSubmit'>/**
2 </span> * @class Ext.form.action.StandardSubmit
3  * @extends Ext.form.action.Submit
4  * &lt;p&gt;A class which handles submission of data from {@link Ext.form.Basic Form}s using a standard
5  * &lt;tt&gt;&amp;lt;form&amp;gt;&lt;/tt&gt; element submit. It does not handle the response from the submit.&lt;/p&gt;
6  * &lt;p&gt;If validation of the form fields fails, the Form's {@link Ext.form.Basic#afterAction} method
7  * will be called. Otherwise, afterAction will not be called.&lt;/p&gt;
8  * &lt;p&gt;Instances of this class are only created by a {@link Ext.form.Basic Form} when
9  * {@link Ext.form.Basic#submit submit}ting, when the form's {@link Ext.form.Basic#standardSubmit}
10  * config option is &lt;tt&gt;true&lt;/tt&gt;.&lt;/p&gt;
11  */
12 Ext.define('Ext.form.action.StandardSubmit', {
13     extend:'Ext.form.action.Submit',
14     alias: 'formaction.standardsubmit',
15
16 <span id='Ext-form.action.StandardSubmit-cfg-target'>    /**
17 </span>     * @cfg {String} target
18      * Optional &lt;tt&gt;target&lt;/tt&gt; attribute to be used for the form when submitting. If not specified,
19      * the target will be the current window/frame.
20      */
21
22 <span id='Ext-form.action.StandardSubmit-method-doSubmit'>    /**
23 </span>     * @private
24      * Perform the form submit. Creates and submits a temporary form element containing an input element for each
25      * field value returned by {@link Ext.form.Basic#getValues}, plus any configured {@link #params params} or
26      * {@link Ext.form.Basic#baseParams baseParams}.
27      */
28     doSubmit: function() {
29         var form = this.buildForm();
30         form.submit();
31         Ext.removeNode(form);
32     }
33
34 });
35 </pre></pre></body></html>