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
5 * Provides a handle for 9-point resizing of Elements or Components.
7 Ext.define('Ext.resizer.Handle', {
8 extend: 'Ext.Component',
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.
15 onRender: function() {
18 this.baseHandleCls + '-' + this.region,
21 this.callParent(arguments);
22 this.el.unselectable();
25 </pre></pre></body></html>