1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
if(!dojo._hasResource["dojox.widget.TimeSpinner"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
dojo._hasResource["dojox.widget.TimeSpinner"] = true;
dojo.provide("dojox.widget.TimeSpinner");
dojo.require("dijit.form._Spinner");
dojo.require("dijit.form.NumberTextBox");
dojo.require("dojo.date");
dojo.require("dojo.date.locale");
dojo.require("dojo.date.stamp");
dojo.declare(
"dojox.widget.TimeSpinner",
[dijit.form._Spinner],
{
// summary: Time Spinner
// description: This widget is the same as a normal NumberSpinner, but for the time component of a date object instead
required: false,
adjust: function(/* Object */ val, /*Number*/ delta){
return dojo.date.add(val, "minute", delta)
},
//FIXME should we allow for constraints in this widget?
isValid: function(){return true;},
smallDelta: 5,
largeDelta: 30,
timeoutChangeRate: 0.50,
parse: function(time, locale){
return dojo.date.locale.parse(time, {selector:"time", formatLength:"short"});
},
format: function(time, locale){
if (dojo.isString(time)) { return time; }
return dojo.date.locale.format(time, {selector:"time", formatLength:"short"});
},
serialize: dojo.date.stamp.toISOString,
value: "12:00 AM"
});
}
|