0
我想將Today日期綁定到模型和Kendo UI Datepicker並保持它們同步,但它不起作用...我的DatePicker從不在控件上顯示模型值。AngularJS KendoUI DatePicker Model not binding
這裏是我的代碼角:
vm.startDateOptions = {
parseFormats: ["YYYY-MM-DD"]
};
vm.searchInfos = {
startDate: moment(new Date()).format('YYYY-M-D')
// Giving 2015-10-14 for today
}
HTML:
<input onkeydown="return false;" id="start" kendo-date-picker
k-options="vm.startDateOptions"
k-ng-model="vm.searchInfos.start"
style="width: 100%;" />
也許你在這裏犯了一個錯誤'k-ng-model =「vm.searchInfos.start」'。 您應該使用'startDate'而不是'start'。 –
arg ....這麼多時間試圖瞭解這樣的錯誤的問題.... thx – Vince