Roo/Template.js
[roojs1] / Roo / Template.js
index bfcc6cd..ea096de 100644 (file)
@@ -100,21 +100,29 @@ Roo.Template.prototype = {
     
     loading : false,
     
+    afterLoad : false,
+    
     load : function (url, success)
     {
+        
+        this.afterLoad = success;
         if (this.loading) {
             return;
         }
+        
         this.loading = true;
+        this.compiled = false;
         var _t = this;
-        var cx = new Roo.data.Connection({
+        var cx = new Roo.data.Connection();
+        cx.request({
             url : url,
             method : 'GET',
-            success : function () {
+            success : function (response) {
                 _t.loading = false;
-                success && success();
+                _t.html = response.responseText;
+                _t.afterLoad && _t.afterLoad();
             },
-            failure : function() {
+            failure : function(response) {
                 Roo.log("Template failed to load from " + url);
                 _t.loading = false;
             }