dijit._Templated
dojo.require("dijit._Templated");
defined in dijit/_Templated.js
Mixin for widgets that are instantiated from a template
Usage
function ()
FunctionsBack to top
Construct the UI for this widget from a template, setting this.domNode.
Static method to get a template based on the templatePath or
Iterate through the template and attach functions and nodes accordingly.
Attempts to create a set of nodes based on the structure of the passed text.
relocate source contents to templated container node this.containerNode must be able to receive children, or exceptions will be thrown
Strips <?xml ...?> declarations so that external SVG and XML documents can be added to a document without worry. Also, if the string is an HTML document, only the part inside the body tag is returned.

PropertiesBack to top
holds child elements. "containerNode" is generally set via a dojoAttachPoint assignment and it designates where children of the src dom node will be placed
a node that represents the widget template. Pre-empts both templateString and templatePath.
Path to template (HTML file) for this widget relative to dojo.baseUrl
a string that represents the widget template. Pre-empts the
should we parse the template to find widgets that might be declared in markup inside it? false by default.