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.
 
 
 
 
 
 

18 lines
571 B

define([
"./_BusyButtonMixin",
"dijit/form/Button",
"dojo/_base/declare"
], function(_BusyButtonMixin, Button, declare){
var BusyButton = declare("dojox.form.BusyButton", [Button, _BusyButtonMixin], {
// summary:
// BusyButton is a simple widget which provides implementing more
// user friendly form submission.
// description:
// When a form gets submitted by a user, many times it is recommended to disable
// the submit buttons to prevent double submission. BusyButton provides a simple set
// of features for this purpose
});
return BusyButton;
});