Я хочу использовать bootstrap datepicker и привязать выбранную дату с помощью knockoutjs.
функция, использующая datepicker:
$(function() {
// create the departure date
$('#depart-date').datepicker({
autoclose: true,
format: 'yyyy/mm/dd',
}).on('changeDate', function(ev) {
ConfigureReturnDate();
});
$('#return-date').datepicker({
autoclose: true,
format: 'yyyy/mm/dd',
startDate: $('#depart-date').val()
});
// Set the min date on page load
ConfigureReturnDate();
// Resets the min date of the return date
function ConfigureReturnDate() {
$('#return-date').datepicker('setStartDate', $('#depart-date').val());
}
});
Вот скрипка, которую я хочу использовать, но не знаю, как это сделать. http://jsfiddle.net/zNbUT/276/