summaryrefslogtreecommitdiff
path: root/js/dojo-1.6/dojox/dtl/DomInline.xd.js
blob: 35c9b1336ca00a26cdae1a85f335e4ef40949799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
	Copyright (c) 2004-2011, The Dojo Foundation All Rights Reserved.
	Available via Academic Free License >= 2.1 OR the modified BSD license.
	see: http://dojotoolkit.org/license for details
*/


dojo._xdResourceLoaded(function(dojo, dijit, dojox){
return {depends: [["provide", "dojox.dtl.DomInline"],
["require", "dojox.dtl.dom"],
["require", "dijit._Widget"]],
defineResource: function(dojo, dijit, dojox){if(!dojo._hasResource["dojox.dtl.DomInline"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.dtl.DomInline"] = true;
dojo.provide("dojox.dtl.DomInline");
dojo.require("dojox.dtl.dom");

dojo.require("dijit._Widget");

dojox.dtl.DomInline = dojo.extend(function(args, node){
	this.create(args, node);
},
dijit._Widget.prototype,
{
	context: null,
	render: function(/*dojox.dtl.Context?*/ context){
		this.context = context || this.context;
		this.postMixInProperties();
		var root = this.template.render(this.context).getRootNode();
		if(root != this.containerNode){
			this.containerNode.parentNode.replaceChild(root, this.containerNode);
			this.containerNode = root;
		}
	},
	declaredClass: "dojox.dtl.Inline",
	buildRendering: function(){
		var div = this.domNode = document.createElement("div");
		this.containerNode = div.appendChild(document.createElement("div"));
		var node = this.srcNodeRef;
		if(node.parentNode){
			node.parentNode.replaceChild(div, node);
		}

		this.template = new dojox.dtl.DomTemplate(dojo.trim(node.text), true);
		this.render();
	},
	postMixInProperties: function(){
		this.context = (this.context.get === dojox.dtl._Context.prototype.get) ? this.context : new dojox.dtl.Context(this.context);
	}
});

}

}};});