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.
 
 
 
 
 
 

22 lines
678 B

define([
"dojo/_base/lang",
"./_PickerChooser!DatePicker"
], function(lang, DatePicker){
// module:
// dojox/mobile/DatePicker
// TODO: need to list all the properties/methods in the interface provided by
// SpinWheelDatePicker / ValuePickerDatePicker
/*=====
return function(){
// summary:
// A wrapper widget around SpinWheelDatePicker or ValuePickerDatePicker.
// It should be used with the automatic theme loader, dojox/mobile/deviceTheme.
// Returns ValuePickerDatePicker when the current theme is "android" or "holodark".
// Returns SpinWheelDatePicker otherwise.
};
=====*/
return lang.setObject("dojox.mobile.DatePicker", DatePicker);
});