123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!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-HeaderReorderer'>/**
- </span> * @private
- */
- Ext.define('Ext.grid.plugin.HeaderReorderer', {
- extend: 'Ext.AbstractPlugin',
- requires: ['Ext.grid.header.DragZone', 'Ext.grid.header.DropZone'],
- alias: 'plugin.gridheaderreorderer',
- init: function(headerCt) {
- this.headerCt = headerCt;
- headerCt.on({
- render: this.onHeaderCtRender,
- single: true,
- scope: this
- });
- },
- <span id='Ext-grid-plugin-HeaderReorderer-method-destroy'> /**
- </span> * @private
- * AbstractComponent calls destroy on all its plugins at destroy time.
- */
- destroy: function() {
- Ext.destroy(this.dragZone, this.dropZone);
- },
- onHeaderCtRender: function() {
- var me = this;
-
- me.dragZone = new Ext.grid.header.DragZone(me.headerCt);
- me.dropZone = new Ext.grid.header.DropZone(me.headerCt);
- if (me.disabled) {
- me.dragZone.disable();
- }
- },
-
- enable: function() {
- this.disabled = false;
- if (this.dragZone) {
- this.dragZone.enable();
- }
- },
-
- disable: function() {
- this.disabled = true;
- if (this.dragZone) {
- this.dragZone.disable();
- }
- }
- });
- </pre>
- </body>
- </html>
|