3
如何接受KendoDatePicker中的多種格式?KendoDatePicker多種格式
例如,聲明與此類似的多種格式(如果格式接受數組)。
this.$('#dtToDate').kendoDatePicker({
value: new Date(),
min: new Date(1950, 0, 1),
max: new Date(2049, 11, 31),
format: ["MM-dd-yyyy", "MM/dd/yyyy"]
});
爲了接受格式爲12-10-2013或12/10/2013的日期。