remove debugging code
[roojs1] / Roo / Template.js
index a04b261..4f8e302 100644 (file)
@@ -25,7 +25,9 @@ var t = new Roo.Template({
 });
 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
 </code></pre>
-* For more information see this blog post with examples: <a href="http://www.jackslocum.com/yui/2006/10/06/domhelper-create-elements-using-dom-html-fragments-or-templates/">DomHelper - Create Elements using DOM, HTML fragments and Templates</a>. 
+* For more information see this blog post with examples:
+*  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
+     - Create Elements using DOM, HTML fragments and Templates</a>. 
 * @constructor
 * @param {Object} cfg - Configuration object.
 */
@@ -44,13 +46,16 @@ Roo.Template = function(cfg){
         // bc
         this.html = cfg;
     }
-    
+    if (this.url) {
+        this.load();
+    }
     
 };
 Roo.Template.prototype = {
     
     /**
-     * @cfg {String} url  The Url to load the template from.
+     * @cfg {String} url  The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..
+     *                    it should be fixed so that template is observable...
      */
     url : false,
     /**
@@ -63,13 +68,9 @@ Roo.Template.prototype = {
      * @return {String} The HTML fragment
      */
     applyTemplate : function(values){
+        //Roo.log(["applyTemplate", values]);
         try {
-            _t= this;
-            if (this.url) {
-                this.afterLoad = function () { _t.applyTemplate(values); };
-                this.load();
-                return;
-            }
+           
             if(this.compiled){
                 return this.compiled(values);
             }
@@ -108,31 +109,30 @@ Roo.Template.prototype = {
     },
     
     loading : false,
-    
-    afterLoad : false,
-    
-    load : function (success)
+      
+    load : function ()
     {
-        
-        this.afterLoad = success;
+         
         if (this.loading) {
             return;
         }
+        var _t = this;
         
         this.loading = true;
         this.compiled = false;
-        var _t = this;
+        
         var cx = new Roo.data.Connection();
         cx.request({
-            url : url,
+            url : this.url,
             method : 'GET',
             success : function (response) {
                 _t.loading = false;
                 _t.html = response.responseText;
-                _t.afterLoad && _t.afterLoad();
-            },
+                _t.url = false;
+                _t.compile();
+             },
             failure : function(response) {
-                Roo.log("Template failed to load from " + url);
+                Roo.log("Template failed to load from " + _t.url);
                 _t.loading = false;
             }
         });