jquery-ui/tests/unit/datepicker/datepicker_common.js
Felix Nagel f88a06352a Calendar: Add min and max option.
Improve render day cell mechanism.
2015-01-29 17:52:50 -05:00

26 lines
405 B
JavaScript

TestHelpers.commonWidgetTests( "datepicker", {
defaults: {
appendTo: null,
dateFormat: { date: "short" },
disabled: false,
eachDay: $.noop,
max: null,
min: null,
numberOfMonths: 1,
position: {
my: "left top",
at: "left bottom"
},
show: true,
showWeek: false,
hide: true,
// callbacks
beforeOpen: null,
close: null,
create: null,
open: null,
select: null
}
});