summaryrefslogtreecommitdiff
path: root/js/dojo-1.7.2/dojox/dtl/ext-dojo/NodeList.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/dojo-1.7.2/dojox/dtl/ext-dojo/NodeList.js')
-rw-r--r--js/dojo-1.7.2/dojox/dtl/ext-dojo/NodeList.js41
1 files changed, 41 insertions, 0 deletions
diff --git a/js/dojo-1.7.2/dojox/dtl/ext-dojo/NodeList.js b/js/dojo-1.7.2/dojox/dtl/ext-dojo/NodeList.js
new file mode 100644
index 0000000..d501685
--- /dev/null
+++ b/js/dojo-1.7.2/dojox/dtl/ext-dojo/NodeList.js
@@ -0,0 +1,41 @@
+//>>built
+define("dojox/dtl/ext-dojo/NodeList", [
+ "dojo/_base/lang",
+ "dojo/_base/NodeList",
+ "../_base"
+], function(lang,Nodelist,dd){
+ /*=====
+ Nodelist = dojo.Nodelist;
+ dd = dojox.dtl;
+ =====*/
+
+ var nl = lang.getObject("dojox.dtl.ext-dojo.NodeList", true);
+
+ lang.extend(Nodelist, {
+ dtl: function(template, context){
+ // summary: Renders the specified template in each of the Nodelist entries.
+ // template: dojox.dtl.__StringArgs|String
+ // The template string or location
+ // context: dojox.dtl.__ObjectArgs|Object
+ // The context object or location
+ var d = dd, self = this;
+
+ var render = function(template, context){
+ var content = template.render(new d._Context(context));
+ self.forEach(function(node){
+ node.innerHTML = content;
+ });
+ }
+
+ d.text._resolveTemplateArg(template).addCallback(function(templateString){
+ template = new d.Template(templateString);
+ d.text._resolveContextArg(context).addCallback(function(context){
+ render(template, context);
+ });
+ });
+
+ return this;
+ }
+ });
+ return nl;
+}); \ No newline at end of file