Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / guides / forms / examples / simple_form / app.js
diff --git a/docs/guides/forms/examples/simple_form/app.js b/docs/guides/forms/examples/simple_form/app.js
new file mode 100644 (file)
index 0000000..a414f02
--- /dev/null
@@ -0,0 +1,32 @@
+/**
+ * @example Simple Form
+ *
+ */
+Ext.require('Ext.form.Panel');
+Ext.require('Ext.form.field.Date');
+Ext.onReady(function() {
+    Ext.create('Ext.form.Panel', {
+        renderTo: Ext.getBody(),
+        title: 'User Form',
+        height: 130,
+        width: 280,
+        bodyPadding: 10,
+        defaultType: 'textfield',
+        items: [
+            {
+                fieldLabel: 'First Name',
+                name: 'firstName'
+            },
+            {
+                fieldLabel: 'Last Name',
+                name: 'lastName'
+            },
+            {
+                xtype: 'datefield',
+                fieldLabel: 'Date of Birth',
+                name: 'birthDate'
+            }
+        ]
+    });
+
+});