Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / docs / source / Handle.html
1 <!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-resizer.Handle'>/**
2 </span> * @class Ext.resizer.Handle
3  * @extends Ext.Component
4  *
5  * Provides a handle for 9-point resizing of Elements or Components.
6  */
7 Ext.define('Ext.resizer.Handle', {
8     extend: 'Ext.Component',
9     handleCls: '',
10     baseHandleCls: Ext.baseCSSPrefix + 'resizable-handle',
11     // Ext.resizer.Resizer.prototype.possiblePositions define the regions
12     // which will be passed in as a region configuration.
13     region: '',
14
15     onRender: function() {
16         this.addCls(
17             this.baseHandleCls,
18             this.baseHandleCls + '-' + this.region,
19             this.handleCls
20         );
21         this.callParent(arguments);
22         this.el.unselectable();
23     }
24 });
25 </pre></pre></body></html>