examples/form/test.html
authorChris <chris@roojs.com>
Thu, 18 Oct 2012 08:47:47 +0000 (16:47 +0800)
committerChris <chris@roojs.com>
Thu, 18 Oct 2012 08:47:47 +0000 (16:47 +0800)
examples/form/test.html [new file with mode: 0644]

diff --git a/examples/form/test.html b/examples/form/test.html
new file mode 100644 (file)
index 0000000..6159ade
--- /dev/null
@@ -0,0 +1,67 @@
+<!--From: admin@prettybooked.com
+To: {t.person.email:h}
+Subject: EMAIL VERIFICATION: Your sign up request from Prettybooked
+Content-Type: text/html; charset="utf-8"
+Message-Id: {t.full_msgid}
+Mime-Version: 1.0-->
+
+<!DOCTYPE html>
+<html>
+    <head>
+        <title></title>
+        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+        <link rel="stylesheet" type="text/css" href="/web.prettybooked/roojs1/css/roojs.css"/>
+    <link rel="stylesheet" type="text/css" href="/web.prettybooked/roojs1/css/xtheme-slate.css"/> 
+    <link rel="stylesheet" type="text/css" href="/web.prettybooked/roojs1/css/daypicker.css"/> 
+
+
+     <script type="text/javascript" src="/web.prettybooked/roojs1/roojs-debug.js"></script>   
+       
+    <script type="text/javascript" src="/web.prettybooked/roojs1/Roo/form/DayPicker.js"></script>
+    
+    <!-- for testing -->
+    <script type="text/javascript" src="/web.prettybooked/roojs1/Roo/form/HtmlEditor.js"></script>
+    <script type="text/javascript" src="/web.prettybooked/roojs1/Roo/form/HtmlEditor/ToolbarStandard.js"></script>
+
+    <script type="text/javascript" src="/web.prettybooked/roojs1/Roo/form/ComboBoxArray.js"></script>
+    <script type="text/javascript" src="/web.prettybooked/roojs1/Roo/form/MonthField.js"></script>
+    
+    <!-- for testing new time picker.. -->
+    
+    
+    
+    <!-- Common Styles for the examples -->
+    
+    </head>
+    <body>
+        <script>
+            Roo.onReady(function(){
+                var fs = new Roo.form.Form({
+                    labelAlign: 'right',
+                    labelWidth: 80
+                });
+
+                fs.fieldset(
+                    {legend:'Contact Information', style: 'width:320px;' },
+                    new Roo.form.MonthField({
+                        fieldLabel: 'Date of Month',
+                        name: 'dom',
+                        width:190,
+                        allowBlank:false
+                    })
+                );
+                fs.render('form-ct3');
+            });
+        </script>
+        
+        <div style="width:345px;"  class="roodocs-formblock">
+            <h3>Fieldsets, labels right and complex fields</h3>
+            <div id="form-ct3"></div>
+        </div>
+        
+        
+        
+        
+        
+    </body>
+</html>
\ No newline at end of file