我試圖從jquery中使用datepicker,但我不知道如何從中獲取值。如何從DatePicker中獲取價值
我使用這個代碼日期選擇視圖:
JQ.DatePicker = Em.View.extend(JQ.Widget, {
uiType: 'datepicker',
uiOptions: ['disabled', 'altField', 'altFormat', 'appendText', 'autoSize', 'buttonImage', 'buttonImageOnly', 'buttonText', 'calculateWeek', 'changeMonth', 'changeYear', 'closeText', 'constrainInput', 'currentText', 'dateFormat', 'dayNames', 'dayNamesMin', 'dayNamesShort', 'defaultDate', 'duration', 'firstDay', 'gotoCurrent', 'hideIfNoPrevNext', 'isRTL', 'maxDate', 'minDate', 'monthNames', 'monthNamesShort', 'navigationAsDateFormat', 'nextText', 'numberOfMonths', 'prevText', 'selectOtherMonths', 'shortYearCutoff', 'showAnim', 'showButtonPanel', 'showCurrentAtPos', 'showMonthAfterYear', 'showOn', 'showOptions', 'showOtherMonths', 'showWeek', 'stepMonths', 'weekHeader', 'yearRange', 'yearSuffix'],
uiEvents: ['create', 'beforeShow', 'beforeShowDay', 'onChangeMonthYear', 'onClose', 'onSelect'],
tagName: 'input',
type: "text",
attributeBindings: ['type', 'value']
});
我的擴展視圖:
App.DatePicker = JQ.DatePicker.extend({
dateFormat: 'yy-mm-dd',
classNames: ['form-control'],
onSelect: function(dateText, inst) {
this.value = dateText;
this.set('value',dateText);
}
});
在HTML頁面中我加:
{{#view App.DatePicker valueBinding="date"}}{{/view}}
我的控制器:
App.MainController = Ember.ArrayController.extend({
templateName: "main",
date: null,
saveDate: function(value){
console.log("saveDate");
this.date = value;
},
showData: function(){
alert(this.date);
},
});
我在{{view App.DatePicker}}中測試了其他一些選項,但我不明白這些視圖和控制器是如何工作的。有人可以幫我解決這個問題,或者給我發送一些關於這個主題的好的指南的鏈接?
請接受您自己的答案,以免它出現在Ember的「未答覆」問題列表中。謝謝! – jacefarm