dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
19 lines (16 loc) • 571 B
JavaScript
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;
});