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.
14 lines (12 loc) • 441 B
JavaScript
define([
"dojo/_base/declare",
"dojox/form/_RangeSliderMixin",
"dojo/text!./resources/HorizontalRangeSlider.html",
"dijit/form/HorizontalSlider"
], function(declare, RangeSliderMixin, template, baseSlider){
return declare("dojox.form.HorizontalRangeSlider", [baseSlider, RangeSliderMixin], {
// summary:
// A form widget that allows one to select a range with two horizontally draggable images
templateString: template
});
});