knockoutjs databind with jquery controls
http://stackoverflow.com/questions/6399078/knockoutjs-databind-with-jquery-controls
by Mark
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.11/themes/base/jquery-ui.css">
<script src="http://knockoutjs.com/downloads/knockout-2.2.1.js"></script>
<input data-bind="datepicker: myDate, datepickerOptions: { dateFormat: 'm/d/yy', altFormat: 'yy-mm-dd', showAnim: 'puff', minDate: new Date() }" />
<hr />
<button data-bind="click: setToCurrentDate">Set To Current Date</button>
<hr />
<div data-bind="text: myDate"></div>
CSS
td, th { padding: 5px; border: solid 1px black; }
th { color: #666; }
a { font-size: .75em; }
JavaScript
ko.bindingHandlers.datepicker = {
init: function(element, valueAccessor, allBindingsAccessor) {
var $el = $(element);
//initialize datepicker with some optional options
var options = allBindingsAccessor().datepickerOptions || {};
$el.datepicker(options);
//handle the field changing
ko.utils.registerEventHandler(element, "change", function() {
var observable = valueAccessor();
observable($el.datepicker("getDate"));
});
//handle disposal (if KO removes by the template binding)
ko.utils.domNodeDisposal.addDisposeCallback(element, function() {
$el.datepicker("destroy");
});
},
update: function(element, valueAccessor) {
var value = ko.utils.unwrapObservable(valueAccessor()),
$el = $(element),
current = $el.datepicker("getDate");
if (value - current !== 0) {
$el.datepicker("setDate", current);
}
}
};
var viewModel = {
myDate: ko.observable(new Date("12/01/2013")),
setToCurrentDate: function() {
this.myDate(new Date());
}
};
ko.applyBindings(viewModel);