Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / Editing.html
index b866990..00b6213 100644 (file)
@@ -1,15 +1,27 @@
-<!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-grid.plugin.Editing'>/**
-</span> * @class Ext.grid.plugin.Editing
-
-This class provides an abstract grid editing plugin on selected {@link Ext.grid.column.Column columns}.
-The editable columns are specified by providing an {@link Ext.grid.column.Column#editor editor}
-in the {@link Ext.grid.column.Column column configuration}.
-
-*Note:* This class should not be used directly. See {@link Ext.grid.plugin.CellEditing} and
-{@link Ext.grid.plugin.RowEditing}.
-
- * @markdown
+<!DOCTYPE html>
+<html>
+<head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+  <title>The source code</title>
+  <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
+  <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
+  <style type="text/css">
+    .highlight { display: block; background-color: #ddd; }
+  </style>
+  <script type="text/javascript">
+    function highlight() {
+      document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
+    }
+  </script>
+</head>
+<body onload="prettyPrint(); highlight();">
+  <pre class="prettyprint lang-js"><span id='Ext-grid-plugin-Editing'>/**
+</span> * This class provides an abstract grid editing plugin on selected {@link Ext.grid.column.Column columns}.
+ * The editable columns are specified by providing an {@link Ext.grid.column.Column#editor editor}
+ * in the {@link Ext.grid.column.Column column configuration}.
+ *
+ * **Note:** This class should not be used directly. See {@link Ext.grid.plugin.CellEditing} and
+ * {@link Ext.grid.plugin.RowEditing}.
  */
 Ext.define('Ext.grid.plugin.Editing', {
     alias: 'editing.editing',
@@ -23,9 +35,9 @@ Ext.define('Ext.grid.plugin.Editing', {
         observable: 'Ext.util.Observable'
     },
 
-<span id='Ext-grid.plugin.Editing-cfg-clicksToEdit'>    /**
+<span id='Ext-grid-plugin-Editing-cfg-clicksToEdit'>    /**
 </span>     * @cfg {Number} clicksToEdit
-     * The number of clicks on a grid required to display the editor (defaults to 2).
+     * The number of clicks on a grid required to display the editor.
      */
     clicksToEdit: 2,
 
@@ -61,7 +73,8 @@ Ext.define('Ext.grid.plugin.Editing', {
         me.grid = grid;
         me.view = grid.view;
         me.initEvents();
-        me.initFieldAccessors(me.view.getGridColumns());
+        me.mon(grid, 'reconfigure', me.onReconfigure, me);
+        me.onReconfigure();
 
         grid.relayEvents(me, ['beforeedit', 'edit', 'validateedit']);
         // Marks the grid as editable, so that the SelectionModel
@@ -70,7 +83,15 @@ Ext.define('Ext.grid.plugin.Editing', {
         grid.editingPlugin = grid.view.editingPlugin = me;
     },
 
-<span id='Ext-grid.plugin.Editing-method-destroy'>    /**
+<span id='Ext-grid-plugin-Editing-method-onReconfigure'>    /**
+</span>     * Fires after the grid is reconfigured
+     * @private
+     */
+    onReconfigure: function(){
+        this.initFieldAccessors(this.view.getGridColumns());
+    },
+
+<span id='Ext-grid-plugin-Editing-method-destroy'>    /**
 </span>     * @private
      * AbstractComponent calls destroy on all its plugins at destroy time.
      */
@@ -233,18 +254,19 @@ Ext.define('Ext.grid.plugin.Editing', {
         this.startEdit(record, view.getHeaderAtIndex(colIdx));
     },
 
-<span id='Ext-grid.plugin.Editing-property-beforeEdit'>    /**
+<span id='Ext-grid-plugin-Editing-property-beforeEdit'>    /**
 </span>     * @private
-     * @abstract. Template method called before editing begins.
+     * @template
+     * Template method called before editing begins.
      * @param {Object} context The current editing context
      * @return {Boolean} Return false to cancel the editing process
      */
     beforeEdit: Ext.emptyFn,
 
-<span id='Ext-grid.plugin.Editing-method-startEdit'>    /**
-</span>     * 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.
+<span id='Ext-grid-plugin-Editing-method-startEdit'>    /**
+</span>     * Starts editing the specified record, using the specified Column definition to define which field is being edited.
+     * @param {Ext.data.Model/Number} record The Store data record which backs the row to be edited, or index of the record in Store.
+     * @param {Ext.grid.column.Column/Number} columnHeader The Column object defining the column to be edited, or index of the column.
      */
     startEdit: function(record, columnHeader) {
         var me = this,
@@ -258,8 +280,9 @@ Ext.define('Ext.grid.plugin.Editing', {
         me.editing = true;
     },
 
-<span id='Ext-grid.plugin.Editing-method-getEditingContext'>    /**
-</span>     * @private Collects all information necessary for any subclasses to perform their editing functions.
+<span id='Ext-grid-plugin-Editing-method-getEditingContext'>    /**
+</span>     * @private
+     * Collects all information necessary for any subclasses to perform their editing functions.
      * @param record
      * @param columnHeader
      * @returns {Object} The editing context based upon the passed record and column
@@ -300,15 +323,15 @@ Ext.define('Ext.grid.plugin.Editing', {
         };
     },
 
-<span id='Ext-grid.plugin.Editing-method-cancelEdit'>    /**
-</span>     * Cancel any active edit that is in progress.
+<span id='Ext-grid-plugin-Editing-method-cancelEdit'>    /**
+</span>     * Cancels any active edit that is in progress.
      */
     cancelEdit: function() {
         this.editing = false;
     },
 
-<span id='Ext-grid.plugin.Editing-method-completeEdit'>    /**
-</span>     * Complete the edit if there is an active edit in progress.
+<span id='Ext-grid-plugin-Editing-method-completeEdit'>    /**
+</span>     * Completes the edit if there is an active edit in progress.
      */
     completeEdit: function() {
         var me = this;
@@ -328,4 +351,7 @@ Ext.define('Ext.grid.plugin.Editing', {
 
         return me.fireEvent('validateedit', me, context) !== false &amp;&amp; !context.cancel;
     }
-});</pre></pre></body></html>
\ No newline at end of file
+});
+</pre>
+</body>
+</html>