私のFullcalendarにdatepickerの範囲があります。私はあなたがdatepickerで日付を選ぶことができるいくつかの投稿を見てきましたが、私はユーザーに開始日と終了日を選択させたいと思います。日付範囲ピッカーを使用したFullcalendar
私fullcalendarは、以下の画像のように見える、と私は赤の広場にdatepickersを追加したいと思います。
これは私が使用しているコードです。どのように/どこに日付ピッカーを追加できますか?
<script>
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
defaultDate: '2016-09-12',
navLinks: true, // can click day/week names to navigate views
selectable: true,
selectHelper: true,
select: function(start, end) {
var title = prompt('Event Title:');
var eventData;
if (title) {
eventData = {
title: title,
start: start,
end: end
};
$('#calendar').fullCalendar('renderEvent', eventData, true); // stick? = true
}
$('#calendar').fullCalendar('unselect');
},
eventClick: function(event, element) {
event.title = prompt('Event Title:',event.title);
$('#calendar').fullCalendar('updateEvent', event);
},
editable: true,
eventLimit: true, // allow "more" link when too many events
});
$('#datepicker').datepicker({
inline: true,
onSelect: function(dateText, inst) {
var d = new Date(dateText);
$('#fullcalendar').fullCalendar('gotoDate', d);
}
});
});
</script>
<style>
body {
margin: 40px 10px;
padding: 0;
font-family: "Lucida Grande",Helvetica,Arial,Verdana,sans-serif;
font-size: 14px;
}
#calendar {
max-width: 900px;
margin: 0 auto;
}
</style>
</head>
<body>
<div id='calendar'></div>
<div id='datepicker'></div>
</body>
何を試しましたか?なぜそれは働かなかったのですか?あなたが直面している問題は何ですか?あなたのコードはどこですか? [最小限で完全で検証可能なサンプルの作成方法](http://stackoverflow.com/help/mcve) –
私の質問@milz – zuma
を編集しましたが、これはjquery datepickerドキュメントで見つかりませんでしたか? https://jqueryui.com/datepicker/#date-range。 googleで3秒間の検索がそれを明らかに – ADyson