【发布时间】:2015-05-12 16:58:13
【问题描述】:
我正在使用这个插件:http://eonasdan.github.io/bootstrap-datetimepicker/
我有一个 DropDown 向服务器发送 Ajax 请求以加载日期列表/数组,然后我只需要在 DateTime Picker 中启用该数组中的日期。我在 JSFiddle 上创建了一个类似的场景:http://jsfiddle.net/mdawood1991/sd2gmhop/12/
这是 HTML:
<div class="row">
<div class="col-md-4">
<select class="form-control" data-bind="options: Countries, optionsCaption: '-- Please Select --', value: SelecteItem"></select>
</div>
<div class="col-md-4">
<label class="main-label">Date</label>
<div class='input-group date'>
<input type='text' class="form-control" data-bind="datepicker: SelectedDate" /> <span class="input-group-addon"><span class="glyphicon glyphicon-calendar"></span></span>
</div>
</div>
<div class="col-md-4"></div>
</div>
<pre data-bind="text: ko.toJSON($data, null, 2)"></pre>
我的日期时间自定义活页夹:
ko.bindingHandlers.datepicker = {
init: function (element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {
//initialize datepicker with some optional options
var options = {
format: 'DD/MM/YYYY HH:mm',
defaultDate: valueAccessor()()
};
if (allBindingsAccessor() !== undefined) {
if (allBindingsAccessor().datepickerOptions !== undefined) {
options.format = allBindingsAccessor().datepickerOptions.format !== undefined ? allBindingsAccessor().datepickerOptions.format : options.format;
}
}
$(element).datetimepicker(options);
//when a user changes the date, update the view model
ko.utils.registerEventHandler(element, "dp.change", function (event) {
var value = valueAccessor();
if (ko.isObservable(value)) {
value(event.date);
}
});
var defaultVal = $(element).val();
var value = valueAccessor();
value(moment(defaultVal, options.format));
},
update: function (element, valueAccessor, allBindingsAccessor, viewModel, bindingContext) {
// when ViewModel is updated, update the DatePicker Control
var thisFormat = 'DD/MM/YYYY HH:mm';
if (allBindingsAccessor() !== undefined) {
if (allBindingsAccessor().datepickerOptions !== undefined) {
thisFormat = allBindingsAccessor().datepickerOptions.format !== undefined ? allBindingsAccessor().datepickerOptions.format : thisFormat;
}
}
var value = valueAccessor();
var unwrapped = ko.utils.unwrapObservable(value());
if (unwrapped === undefined || unwrapped === null) {
element.value = new moment(new Date());
console.log("undefined");
} else {
element.value = unwrapped.format(thisFormat);
}
}
};
还有 ViewModel:
function viewModel() {
var self = this;
self.Countries = ko.observableArray(['France', 'Germany', 'Spain']);
self.SelecteItem = ko.observable();
self.EnabledDates = ko.observableArray();
self.SelectedDate = ko.observable(new Date());
self.SelecteItem.subscribe(function () {
self.EnabledDates = [];
if (self.SelecteItem() == "France") {
self.EnabledDates.push(new moment('Date(1431514972533)'));
self.EnabledDates.push(new moment('Date(1431082972533)'));
} else {
self.EnabledDates.push(new moment(new Date()));
}
});
}
var testviewModel = new viewModel();
ko.applyBindings(testviewModel);
我怎样才能只启用 EnabledDates 数组中的日期。
【问题讨论】:
标签: jquery knockout.js datepicker