X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..HEAD:/src/form/action/Submit.js diff --git a/src/form/action/Submit.js b/src/form/action/Submit.js index f9aa8be3..5a0d0ee1 100644 --- a/src/form/action/Submit.js +++ b/src/form/action/Submit.js @@ -41,7 +41,7 @@ If you are unsure which license is appropriate for your use, please contact the *

Other data may be placed into the response for processing by the {@link Ext.form.Basic}'s callback * or event handler methods. The object decoded from this JSON is available in the * {@link Ext.form.action.Action#result result} property.

- *

Alternatively, if an {@link #errorReader} is specified as an {@link Ext.data.reader.Xml XmlReader}:


+ * 

Alternatively, if an {@link Ext.form.Basic#errorReader errorReader} is specified as an {@link Ext.data.reader.Xml XmlReader}:


     errorReader: new Ext.data.reader.Xml({
             record : 'field',
             success: '@success'
@@ -66,7 +66,8 @@ If you are unsure which license is appropriate for your use, please contact the
 </message>
 
*

Other elements may be placed into the response XML for processing by the {@link Ext.form.Basic}'s callback - * or event handler methods. The XML document is available in the {@link #errorReader}'s {@link Ext.data.reader.Xml#xmlData xmlData} property.

+ * or event handler methods. The XML document is available in the {@link Ext.form.Basic#errorReader errorReader}'s + * {@link Ext.data.reader.Xml#xmlData xmlData} property.

*/ Ext.define('Ext.form.action.Submit', { extend:'Ext.form.action.Action', @@ -76,7 +77,7 @@ Ext.define('Ext.form.action.Submit', { type: 'submit', /** - * @cfg {boolean} clientValidation Determines whether a Form's fields are validated + * @cfg {Boolean} clientValidation Determines whether a Form's fields are validated * in a final call to {@link Ext.form.Basic#isValid isValid} prior to submission. * Pass false in the Form's submit options to prevent this. Defaults to true. */ @@ -189,7 +190,7 @@ Ext.define('Ext.form.action.Submit', { } // Create the form - formEl = Ext.core.DomHelper.append(Ext.getBody(), formSpec); + formEl = Ext.DomHelper.append(Ext.getBody(), formSpec); // Special handling for file upload fields: since browser security measures prevent setting // their values programatically, and prevent carrying their selected values over when cloning,