X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/DragDrop2.html diff --git a/docs/source/DragDrop2.html b/docs/source/DragDrop2.html index a58c654c..936622b7 100644 --- a/docs/source/DragDrop2.html +++ b/docs/source/DragDrop2.html @@ -1,4 +1,21 @@ -
/**
+
+
+
+
+ The source code
+
+
+
+
+
+
+ /**
* @class Ext.grid.plugin.DragDrop
* <p>This plugin provides drag and/or drop functionality for a GridView.</p>
* <p>It creates a specialized instance of {@link Ext.dd.DragZone DragZone} which knows how to drag out of a {@link Ext.grid.View GridView}
@@ -29,7 +46,7 @@ Ext.define('Ext.grid.plugin.DragDrop', {
'Ext.grid.ViewDropZone'
],
- /**
+ /**
* @event beforedrop
* <p><b>This event is fired through the GridView. Add listeners to the GridView object</b></p>
* <p>Fired when a drop gesture has been triggered by a mouseup event in a valid drop position in the GridView.
@@ -62,7 +79,7 @@ Ext.define('Ext.grid.plugin.DragDrop', {
* <p>Return <code>0</code> from this event handler, and call the <code>dropFunction</code> at any time to perform the data transfer.</p>
*/
- /**
+ /**
* @event drop
* <b>This event is fired through the GridView. Add listeners to the GridView object</b>
* Fired when a drop operation has been completed and the data has been moved or copied.
@@ -87,35 +104,35 @@ Ext.define('Ext.grid.plugin.DragDrop', {
dragText : '{0} selected row{1}',
- /**
+ /**
* @cfg {String} ddGroup
* A named drag drop group to which this object belongs. If a group is specified, then both the DragZones and DropZone
* used by this plugin will only interact with other drag drop objects in the same group (defaults to 'TreeDD').
*/
ddGroup : "GridDD",
- /**
+ /**
* @cfg {String} dragGroup
* <p>The ddGroup to which the DragZone will belong.</p>
* <p>This defines which other DropZones the DragZone will interact with. Drag/DropZones only interact with other Drag/DropZones
* which are members of the same ddGroup.</p>
*/
- /**
+ /**
* @cfg {String} dropGroup
* <p>The ddGroup to which the DropZone will belong.</p>
* <p>This defines which other DragZones the DropZone will interact with. Drag/DropZones only interact with other Drag/DropZones
* which are members of the same ddGroup.</p>
*/
- /**
+ /**
* @cfg {Boolean} enableDrop
* <p>Defaults to <code>true</code></p>
* <p>Set to <code>false</code> to disallow the View from accepting drop gestures</p>
*/
enableDrop: true,
- /**
+ /**
* @cfg {Boolean} enableDrag
* <p>Defaults to <code>true</code></p>
* <p>Set to <code>false</code> to disallow dragging items from the View </p>
@@ -126,7 +143,7 @@ Ext.define('Ext.grid.plugin.DragDrop', {
view.on('render', this.onViewRender, this, {single: true});
},
- /**
+ /**
* @private
* AbstractComponent calls destroy on all its plugins at destroy time.
*/
@@ -152,4 +169,6 @@ Ext.define('Ext.grid.plugin.DragDrop', {
});
}
}
-});
\ No newline at end of file
+});
+
+