builder.html.js
[app.Builder.js] / builder.html.js
index 6c4666e..f07d3de 100644 (file)
@@ -1,5 +1,6 @@
 //<script type="text/javascript">
 
+_this = { } ; // a fake self for rendering.
 
 Builder  = {
     
@@ -45,17 +46,18 @@ Builder  = {
             //console.log(Builder.dump(this.layoutbase.el));
             
             
-            //try {
-                var pan = this.layoutbase.getRegion('center');
+            try {
+                var pan = this.layoutbase.getRegion('center').getPanel(0);
                 if (pan) {
-                    this.layoutbase.regions['center'].remove('pan');
+                    this.layoutbase.remove('center', pan);
                 }
                 
                 
-            //} catch( e) {
-            //    console.log(e);
+            } catch( e) {
+                console.log(e);
+                console.log(JSON.stringify(e));
                 // reload!!?
-            //}
+            }
             
             
             
@@ -81,7 +83,7 @@ Builder  = {
         
         
         this.munge(cfg);
-        //console.log(cfg);return;
+        //console.log(this.dump(cfg)); 
         // we draw either a dialog or a tab..
         
         if (cfg.xtype == 'LayoutDialog') {
@@ -95,7 +97,7 @@ Builder  = {
             this.dialogroot = Roo.get( document.body).createChild({
                 id : cfg.id
             });
-             
+            
             this.dialog = new Roo[cfg.xtype](this.dialogroot, cfg);
             //this.dialog.el.on('click', this.panelClick, this);
             this.dialog.show();
@@ -126,8 +128,16 @@ Builder  = {
                 }
             });
         }
-        this.layoutbase.addxtype(  cfg ); 
-        
+        try {
+            console.log("ADDING CFG");    
+            this.layoutbase.addxtype(  cfg ); 
+        } catch (e) {
+            console.log("GOT ERROR?");    
+            console.log(e);
+            console.log(typeof(e));
+            
+            console.log(this.dump(e));
+        }
         
         
     },
@@ -155,6 +165,7 @@ Builder  = {
         
         for(var p in cfg){
             // key is not string?!?!?!!?
+            console.log(p);
             if (typeof(p) != 'string') {
                 continue;
             }
@@ -179,11 +190,13 @@ Builder  = {
                     // stupid IE can not return objects evaluated..
                     eval('_tmp =(' + cfg[p] + ')');
                     cfg[p.substr(1)] = _tmp;
-                    //if (typeof(_tmp) == 'undefined') {
-                    //    alert(cfg[p]);
-                   // }
+                    if (typeof(_tmp) == 'undefined') {
+                        alert(cfg[p]);
+                    }
                    
-                } catch(e) {  console.log('Error evaluating: '  + cfg[p]); };
+                } catch(e) {  
+                    console.log('Error evaluating: '  + cfg[p] + "\r\n" + JSON.stringify(e)); 
+                };
                 delete cfg[p];
                     
                 
@@ -198,6 +211,23 @@ Builder  = {
               
         }
         
+        if (cfg.xtype && cfg.xtype.match(/^Roo\./) && !cfg.xns) {
+            // xtype contains full path..
+            var bits = cfg.xtype.split('.');
+            bits.shift(); // remove roo..
+            cfg.xtype = bits.pop(); // get the last bit..
+            cfg.xns = Roo;
+            while (bits.length) {
+                cfg.xns = cfg.xns[bits.shift()]; 
+            }
+             
+        }
+        if (cfg.xtype) {
+            if (!cfg.xns || typeof(cfg.xns[cfg.xtype]) == 'undefined') {
+                throw "Invalid Xtype " + cfg.xtype + ' on ' + cfg.xtreepath;
+            }
+        }
+        
         // we can overlay some event handlers here..
         cfg.listeners = cfg.listeners || {};