X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..refs/heads/master:/docs/source/Action2.html diff --git a/docs/source/Action2.html b/docs/source/Action2.html index d1fcc05a..f56c117c 100644 --- a/docs/source/Action2.html +++ b/docs/source/Action2.html @@ -3,8 +3,8 @@
/** - * @class Ext.form.action.Action +/** + * @class Ext.form.action.Action * @extends Ext.Base * <p>The subclasses of this class provide actions to perform upon {@link Ext.form.Basic Form}s.</p> * <p>Instances of this class are only created by a {@link Ext.form.Basic Form} when @@ -28,8 +28,6 @@ * {@link Ext.form.Basic#load load} and {@link Ext.form.Basic#doAction doAction}), * and to the {@link Ext.form.Basic#actioncomplete actioncomplete} and * {@link Ext.form.Basic#actionfailed actionfailed} event handlers.</p> - * @constructor - * @param {Object} config The configuration for this instance. */ Ext.define('Ext.form.action.Action', { alternateClassName: 'Ext.form.Action', @@ -65,7 +63,7 @@ Ext.define('Ext.form.action.Action', { /** * @cfg {Object} headers <p>Extra headers to be sent in the AJAX request for submit and load actions. See - * {@link Ext.data.Connection#headers}.</p> + * {@link Ext.data.proxy.Ajax#headers}.</p> */ /** @@ -114,7 +112,7 @@ Ext.define('Ext.form.action.Action', { * @cfg {Boolean} submitEmptyText If set to <tt>true</tt>, the emptyText value will be sent with the form * when it is submitted. Defaults to <tt>true</tt>. */ - + submitEmptyText : true, /** * @property type * The type of action this Action instance performs. @@ -179,8 +177,10 @@ buttons: [{ * @type {Object} */ - - + /** + * Creates new Action. + * @param {Object} config (optional) Config object. + */ constructor: function(config) { if (config) { Ext.apply(this, config); @@ -285,7 +285,7 @@ buttons: [{ }, statics: { - /** + /** * @property CLIENT_INVALID * Failure type returned when client side validation of the Form fails * thus aborting a submit action. Client side validation is performed unless @@ -295,7 +295,7 @@ buttons: [{ */ CLIENT_INVALID: 'client', - /** + /** * @property SERVER_INVALID * <p>Failure type returned when server side processing fails and the {@link #result}'s * <tt>success</tt> property is set to <tt>false</tt>.</p> @@ -306,7 +306,7 @@ buttons: [{ */ SERVER_INVALID: 'server', - /** + /** * @property CONNECT_FAILURE * Failure type returned when a communication error happens when attempting * to send a request to the remote server. The {@link #response} may be examined to @@ -316,7 +316,7 @@ buttons: [{ */ CONNECT_FAILURE: 'connect', - /** + /** * @property LOAD_FAILURE * Failure type returned when the response's <tt>success</tt> * property is set to <tt>false</tt>, or no field values are returned in the response's