Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / StandardSubmit.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-form-action-StandardSubmit'>/**
19 </span> * @class Ext.form.action.StandardSubmit
20  * @extends Ext.form.action.Submit
21  * &lt;p&gt;A class which handles submission of data from {@link Ext.form.Basic Form}s using a standard
22  * &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;
23  * &lt;p&gt;If validation of the form fields fails, the Form's afterAction method
24  * will be called. Otherwise, afterAction will not be called.&lt;/p&gt;
25  * &lt;p&gt;Instances of this class are only created by a {@link Ext.form.Basic Form} when
26  * {@link Ext.form.Basic#submit submit}ting, when the form's {@link Ext.form.Basic#standardSubmit}
27  * config option is &lt;tt&gt;true&lt;/tt&gt;.&lt;/p&gt;
28  */
29 Ext.define('Ext.form.action.StandardSubmit', {
30     extend:'Ext.form.action.Submit',
31     alias: 'formaction.standardsubmit',
32
33 <span id='Ext-form-action-StandardSubmit-cfg-target'>    /**
34 </span>     * @cfg {String} target
35      * Optional &lt;tt&gt;target&lt;/tt&gt; attribute to be used for the form when submitting. If not specified,
36      * the target will be the current window/frame.
37      */
38
39 <span id='Ext-form-action-StandardSubmit-method-doSubmit'>    /**
40 </span>     * @private
41      * Perform the form submit. Creates and submits a temporary form element containing an input element for each
42      * field value returned by {@link Ext.form.Basic#getValues}, plus any configured {@link #params params} or
43      * {@link Ext.form.Basic#baseParams baseParams}.
44      */
45     doSubmit: function() {
46         var form = this.buildForm();
47         form.submit();
48         Ext.removeNode(form);
49     }
50
51 });
52 </pre>
53 </body>
54 </html>