// The following code shows the dropdown calendar and dropdown list,
// and sets the dropdown window's width and height.
$(".selector").wijinputdate({
pickers: {
calendar: {},
list: [{ label: 'item1', value: 1 }],
width: 100,
height: 30
}
});
// The following code shows the dropdown date picker and dropdown time picker,
// and sets the time picker's format.
$(".selector").wijinputdate({
pickers: {
datePicker: {},
timePicker: { format: "tt,hh,mm" }
}
});
// The following code shows the dropdown date picker and dropdown time picker,
// and sets the date picker's format.
$(".selector").wijinputdate({
pickers: {
datePicker: { format: "yyyy,MMMM,dd" },
timePicker: {}
}
});