X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Editing.html diff --git a/docs/source/Editing.html b/docs/source/Editing.html index b866990a..71e83b77 100644 --- a/docs/source/Editing.html +++ b/docs/source/Editing.html @@ -1,5 +1,22 @@ -Sencha Documentation Project
-/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
+/**
  * @class Ext.grid.plugin.Editing
 
 This class provides an abstract grid editing plugin on selected {@link Ext.grid.column.Column columns}.
@@ -23,7 +40,7 @@ Ext.define('Ext.grid.plugin.Editing', {
         observable: 'Ext.util.Observable'
     },
 
-    /**
+    /**
      * @cfg {Number} clicksToEdit
      * The number of clicks on a grid required to display the editor (defaults to 2).
      */
@@ -70,7 +87,7 @@ Ext.define('Ext.grid.plugin.Editing', {
         grid.editingPlugin = grid.view.editingPlugin = me;
     },
 
-    /**
+    /**
      * @private
      * AbstractComponent calls destroy on all its plugins at destroy time.
      */
@@ -233,7 +250,7 @@ Ext.define('Ext.grid.plugin.Editing', {
         this.startEdit(record, view.getHeaderAtIndex(colIdx));
     },
 
-    /**
+    /**
      * @private
      * @abstract. Template method called before editing begins.
      * @param {Object} context The current editing context
@@ -241,7 +258,7 @@ Ext.define('Ext.grid.plugin.Editing', {
      */
     beforeEdit: Ext.emptyFn,
 
-    /**
+    /**
      * Start editing the specified record, using the specified Column definition to define which field is being edited.
      * @param {Model} record The Store data record which backs the row to be edited.
      * @param {Model} columnHeader The Column object defining the column to be edited.
@@ -258,7 +275,7 @@ Ext.define('Ext.grid.plugin.Editing', {
         me.editing = true;
     },
 
-    /**
+    /**
      * @private Collects all information necessary for any subclasses to perform their editing functions.
      * @param record
      * @param columnHeader
@@ -300,14 +317,14 @@ Ext.define('Ext.grid.plugin.Editing', {
         };
     },
 
-    /**
+    /**
      * Cancel any active edit that is in progress.
      */
     cancelEdit: function() {
         this.editing = false;
     },
 
-    /**
+    /**
      * Complete the edit if there is an active edit in progress.
      */
     completeEdit: function() {
@@ -328,4 +345,6 @@ Ext.define('Ext.grid.plugin.Editing', {
 
         return me.fireEvent('validateedit', me, context) !== false && !context.cancel;
     }
-});
\ No newline at end of file +});
+ +