Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / examples / form / absform.js
index a2b2bab..70eb422 100644 (file)
@@ -1,63 +1,73 @@
-/*!
- * Ext JS Library 3.0.0
- * Copyright(c) 2006-2009 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
- */
-Ext.onReady(function() {\r
-    var form = new Ext.form.FormPanel({\r
-        baseCls: 'x-plain',\r
-        layout:'absolute',\r
-        url:'save-form.php',\r
-        defaultType: 'textfield',\r
-\r
-        items: [{\r
-            x: 0,\r
-            y: 5,\r
-            xtype:'label',\r
-            text: 'Send To:'\r
-        },{\r
-            x: 60,\r
-            y: 0,\r
-            name: 'to',\r
-            anchor:'100%'  // anchor width by percentage\r
-        },{\r
-            x: 0,\r
-            y: 35,\r
-            xtype:'label',\r
-            text: 'Subject:'\r
-        },{\r
-            x: 60,\r
-            y: 30,\r
-            name: 'subject',\r
-            anchor: '100%'  // anchor width by percentage\r
-        },{\r
-            x:0,\r
-            y: 60,\r
-            xtype: 'textarea',\r
-            name: 'msg',\r
-            anchor: '100% 100%'  // anchor width and height\r
-        }]\r
-    });\r
-\r
-    var window = new Ext.Window({\r
-        title: 'Resize Me',\r
-        width: 500,\r
-        height:300,\r
-        minWidth: 300,\r
-        minHeight: 200,\r
-        layout: 'fit',\r
-        plain:true,\r
-        bodyStyle:'padding:5px;',\r
-        buttonAlign:'center',\r
-        items: form,\r
-\r
-        buttons: [{\r
-            text: 'Send'\r
-        },{\r
-            text: 'Cancel'\r
-        }]\r
-    });\r
-\r
-    window.show();\r
-});
\ No newline at end of file
+/*
+
+This file is part of Ext JS 4
+
+Copyright (c) 2011 Sencha Inc
+
+Contact:  http://www.sencha.com/contact
+
+GNU General Public License Usage
+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.
+
+If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
+
+*/
+Ext.require([
+    'Ext.form.*',
+    'Ext.layout.container.Absolute',
+    'Ext.window.Window'
+]);
+
+Ext.onReady(function() {
+    var form = Ext.create('Ext.form.Panel', {
+        layout: 'absolute',
+        url: 'save-form.php',
+        defaultType: 'textfield',
+        border: false,
+
+        items: [{
+            fieldLabel: 'Send To',
+            fieldWidth: 60,
+            msgTarget: 'side',
+            allowBlank: false,
+            x: 5,
+            y: 5,
+            name: 'to',
+            anchor: '-5'  // anchor width by percentage
+        }, {
+            fieldLabel: 'Subject',
+            fieldWidth: 60,
+            x: 5,
+            y: 35,
+            name: 'subject',
+            anchor: '-5'  // anchor width by percentage
+        }, {
+            x:5,
+            y: 65,
+            xtype: 'textarea',
+            style: 'margin:0',
+            hideLabel: true,
+            name: 'msg',
+            anchor: '-5 -5'  // anchor width and height
+        }]
+    });
+
+    var win = Ext.create('Ext.window.Window', {
+        title: 'Resize Me',
+        width: 500,
+        height: 300,
+        minWidth: 300,
+        minHeight: 200,
+        layout: 'fit',
+        plain:true,
+        items: form,
+
+        buttons: [{
+            text: 'Send'
+        },{
+            text: 'Cancel'
+        }]
+    });
+
+    win.show();
+});