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.
 
 
 
 
 
 

14 lines
475 B

define(["dojo/_base/declare", "dojox/app/ViewBase", "dijit/form/Button"],
function(declare, ViewBase, Button){
return declare([Button, ViewBase], {
postscript: function(){
// we want to avoid kickin the Dijit lifecycle at ctor time so that definition has been mixed into the
// widget when it is instanciated. This is only really needed if you need the definition
},
_startup: function(){
this.create();
this.inherited(arguments);
}
});
}
);