Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / source / Handle.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5   <title>The source code</title>
6   <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
7   <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
8   <style type="text/css">
9     .highlight { display: block; background-color: #ddd; }
10   </style>
11   <script type="text/javascript">
12     function highlight() {
13       document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
14     }
15   </script>
16 </head>
17 <body onload="prettyPrint(); highlight();">
18   <pre class="prettyprint lang-js"><span id='Ext-resizer-Handle'>/**
19 </span> * @class Ext.resizer.Handle
20  * @extends Ext.Component
21  *
22  * Provides a handle for 9-point resizing of Elements or Components.
23  */
24 Ext.define('Ext.resizer.Handle', {
25     extend: 'Ext.Component',
26     handleCls: '',
27     baseHandleCls: Ext.baseCSSPrefix + 'resizable-handle',
28     // Ext.resizer.Resizer.prototype.possiblePositions define the regions
29     // which will be passed in as a region configuration.
30     region: '',
31
32     onRender: function() {
33         this.addCls(
34             this.baseHandleCls,
35             this.baseHandleCls + '-' + this.region,
36             this.handleCls
37         );
38         this.callParent(arguments);
39         this.el.unselectable();
40     }
41 });
42 </pre>
43 </body>
44 </html>