X-Git-Url: http://git.roojs.org/?p=roojs1;a=blobdiff_plain;f=Roo%2FTemplate.js;h=4f8e30281afe8a961bae09bb01001ee20415f749;hp=3b9d6a38cb0af788a8092a284cb1a0e7f0c93bef;hb=0b69a11b1055a6d3a3fd0719bdd58b5a235de0e4;hpb=53776470795f203688081b8ae981e3cb14a2a9ce diff --git a/Roo/Template.js b/Roo/Template.js index 3b9d6a38cb..4f8e30281a 100644 --- a/Roo/Template.js +++ b/Roo/Template.js @@ -16,36 +16,48 @@ * Usage:

 var t = new Roo.Template({
-    * html : 
-    '<div name="{id}">',
-        '<span class="{cls}">{name:trim} {value:ellipsis(10)}</span>',
-    '</div>'
-);
+    html :  '<div name="{id}">' + 
+        '<span class="{cls}">{name:trim} {someval:this.myformat}{value:ellipsis(10)}</span>' +
+        '</div>',
+    myformat: function (value, allValues) {
+        return 'XX' + value;
+    }
+});
 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
 
-* For more information see this blog post with examples: DomHelper - Create Elements using DOM, HTML fragments and Templates. +* For more information see this blog post with examples: +* DomHelper + - Create Elements using DOM, HTML fragments and Templates. * @constructor * @param {Object} cfg - Configuration object. -* @param {String/Array} html */ Roo.Template = function(cfg){ + // BC! if(cfg instanceof Array){ cfg = cfg.join(""); }else if(arguments.length > 1){ cfg = Array.prototype.join.call(arguments, ""); } - /**@private*/ + if (typeof(cfg) == 'object') { Roo.apply(this,cfg) } else { + // bc this.html = cfg; } - + if (this.url) { + this.load(); + } }; Roo.Template.prototype = { + /** + * @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, /** * @cfg {String} html The HTML fragment or an array of fragments to join("") or multiple arguments to join("") */ @@ -56,8 +68,9 @@ Roo.Template.prototype = { * @return {String} The HTML fragment */ applyTemplate : function(values){ + //Roo.log(["applyTemplate", values]); try { - + if(this.compiled){ return this.compiled(values); } @@ -95,6 +108,36 @@ Roo.Template.prototype = { }, + loading : false, + + load : function () + { + + if (this.loading) { + return; + } + var _t = this; + + this.loading = true; + this.compiled = false; + + var cx = new Roo.data.Connection(); + cx.request({ + url : this.url, + method : 'GET', + success : function (response) { + _t.loading = false; + _t.html = response.responseText; + _t.url = false; + _t.compile(); + }, + failure : function(response) { + Roo.log("Template failed to load from " + _t.url); + _t.loading = false; + } + }); + }, + /** * Sets the HTML used as the template and optionally compiles it. * @param {String} html