sample skeleton application with dojo toolkit & arcgis js api v 4.30
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
1005 B

define([
"dojo/_base/declare",
"dojo/_base/lang",
"dojo/has"
], function(declare, lang, has){
has.add("dom-qsa", !!document.createElement("div").querySelectorAll);
return declare("dojox.mvc._InlineTemplateMixin", null, {
// summary:
// A mixin for template widget, which will look for `<script type="dojox/mvc/InlineTemplate">`
// and treat the HTML in there as the template string.
buildRendering: function(){
var root = this.srcNodeRef;
if(root){
var nodes = has("dom-qsa") ? root.querySelectorAll("script[type='dojox/mvc/InlineTemplate']") : root.getElementsByTagName("script"),
templates = [];
for(var i = 0, l = nodes.length; i < l; ++i){
if(!has("dom-qsa") && nodes[i].getAttribute("type") != "dojox/mvc/InlineTemplate"){ continue; }
templates.push(nodes[i].innerHTML);
}
var templateString = lang.trim(templates.join(""));
if(templateString){
this.templateString = templateString;
}
}
this.inherited(arguments);
}
});
});