view source
[roojs1] / examples / bootstrap / Editor.js
index 3ea3804..12e14f5 100644 (file)
@@ -6,23 +6,16 @@ Roo.example.Editor = new Roo.XComponent({
     part     :  ["layout","viewpanel"],
     order    : '001-viewpanel',
     region   : '',
-    parent   : '#bootstrap',
+    parent   : false,
     name     : "unnamed module",
     disabled : false, 
     permname : '', 
     _tree : function()
     {
-        
-        this.parent = {
-            el : new Roo.bootstrap.Body()
-        }
-        this.parent.el.layout = false;
-        this.parent.el.render(document.body);
-        
+         
         var _this = this;
         var MODULE = this;
-        var baseURL = '/web.campaign/index.local.php';
-        
+         
         return {
             xtype: 'Body',
             xns: Roo.bootstrap,
@@ -50,43 +43,26 @@ Roo.example.Editor = new Roo.XComponent({
                                             xns : Roo.bootstrap
                                         },
                                         {
-                                            xtype : 'Panel',
-                                            xns : Roo.bootstrap.editor,
+                                            xtype : 'HtmlEditor',
+                                            xns : Roo.bootstrap,
+                                            name : 'thanks-email',
                                             width : 1000,
-                                            height : 1000,
-                                            name : 'email-inline-editor',
+                                            height : 1500,
                                             stylesheets : (function(){
                                                 var css = [];
                                                 
-                                                css.push(rootURL + '/roojs1/css-bootstrap/bootstrap.css');
-                                                css.push(rootURL + '/roojs1/css-bootstrap/font-awesome.css');
-                                                css.push(rootURL + '/Campaign/editor/editor.css');
+                                                css.push('../css-bootstrap/bootstrap.css');
+                                                css.push('../css-bootstrap/font-awesome.css');
+                                                //css.push(rootURL + '/Campaign/editor/editor.css');
                                                 
                                                 return css;
                                             })(),
-                                            items : [
+                                            listeners : {
+                                                render : function (_self)
                                                 {
-                                                    xtype : 'TextBlock',
-                                                    xns : Roo.bootstrap.editor,
-                                                    listeners : {
-                                                        render : function (_self)
-                                                        {
-                                                            this.setValue('<b>test</b>');
-                                                        }
-                                                    }
-                                                },
-                                                {
-                                                    xtype : 'ImageBlock',
-                                                    xns : Roo.bootstrap.editor,
-                                                    style : 'margin-top:20px;',
-                                                    listeners : {
-                                                        render : function (_self)
-                                                        {
-                                                            this.setValue('http://localhost/web.campaign/index.local.php/Images/Thumb/100/1351/');
-                                                        }
-                                                    }
+                                                    _this.previewPanel = _self;
                                                 }
-                                            ]
+                                            }
                                         }
                                         
                                     ]