Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / examples / resizer / basic.js
1 /*
2
3 This file is part of Ext JS 4
4
5 Copyright (c) 2011 Sencha Inc
6
7 Contact:  http://www.sencha.com/contact
8
9 GNU General Public License Usage
10 This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
11
12 If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
13
14 */
15 Ext.require(['Ext.resizer.Resizer']);
16
17 Ext.onReady(function() {
18
19     var basic = Ext.create('Ext.resizer.Resizer', {
20         target: 'basic',
21         width: 200,
22         height: 100,
23         minWidth: 100,
24         minHeight: 50
25     });
26
27     var wrapped = Ext.create('Ext.resizer.Resizer', {
28         target: 'wrapped',
29         pinned:true,
30         minWidth:50,
31         minHeight: 50,
32         preserveRatio: true
33     });
34
35     var snapping = Ext.create('Ext.resizer.Resizer', {
36         target: 'croix-de-fer',
37         width: 160,
38         height: 120,
39         minWidth: 160,
40         minHeight: 120,
41         preserveRatio: true,
42         heightIncrement: 20,
43         widthIncrement: 20
44     });
45
46     var transparent = Ext.create('Ext.resizer.Resizer', {
47         target: 'transparent',
48         minWidth:50,
49         minHeight: 50,
50         preserveRatio: true,
51         transparent:true
52     });
53
54     var custom = Ext.create('Ext.resizer.Resizer', {
55         target: 'custom',
56         pinned:true,
57         minWidth:50,
58         minHeight: 50,
59         preserveRatio: true,
60         handles: 'all',
61         dynamic: true
62     });
63
64     var customEl = custom.getEl();
65     // move to the body to prevent overlap on my blog
66     document.body.insertBefore(customEl.dom, document.body.firstChild);
67
68     customEl.on('dblclick', function(){
69         customEl.hide(true);
70     });
71     customEl.hide();
72
73     Ext.get('showMe').on('click', function(){
74         customEl.center();
75         customEl.show(true);
76     });
77
78     var dwrapped = Ext.create('Ext.resizer.Resizer', {
79         target: 'dwrapped',
80         pinned:true,
81         width:450,
82         height:200,
83         minWidth:200,
84         minHeight: 50,
85         dynamic: true
86     });
87 });