#1624 closed defect (fixed)
TimePicker.setTime() fails
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | high | Milestone: | |
Component: | Widgets | Version: | 0.4 |
Keywords: | Timepicker | Cc: | |
Blocked By: | Blocking: |
Description
The Error message is: with error dojo.date.toRfc3339 not a function.
The error is pretty simple to fix with the following 1 line patch.
Index: TimePicker?.js =================================================================== --- TimePicker?.js (revision 6101) +++ TimePicker?.js (working copy) @@ -2,6 +2,7 @@
dojo.require("dojo.widget.*"); dojo.require("dojo.widget.HtmlWidget?"); dojo.require("dojo.event.*");
+dojo.require("dojo.date.serialize");
dojo.require("dojo.date.format"); dojo.require("dojo.dom"); dojo.require("dojo.html.style");
Note: See
TracTickets for help on using
tickets.
(In [6102]) fixes #1624, missing dojo.require in TimePicker?