こんにちは皆、このカレンダーで立ち往生しています。 イベントをカレンダーに表示する必要があります。 1つのイベントしか表示されませんが、さらに2つのイベントがあると、同じ日付にイベントが保存されます。彼らは異なる日付を持っていますが。カレンダーの私のイベントは同じ日付のスタックですが、私のイベントの日付は異なります
<script th:inline="javascript">
/*<![CDATA[*/
var events = [];
var myObject = new Object();
var theList = [[${appointments}]]
$(document).ready(function(){
for (var i = 0; i < theList.length; i++) {
myObject.title = theList[i].title;
myObject.start = new Date(theList[i].start);
myObject.requestNumber = theList[i].requestNumber;
myObject.locationId = theList[i].locationId;
myObject.arrivalTime = theList[i].arrivalTime;
myObject.admissionDate = new Date(theList[i].admissionDate);
myObject.procedureDate = "-";
myObject.admittingDiagnosisDesc = theList[i].admittingDiagnosisDesc;
myObject.description = "";
events.push(myObject);
}
$('#calendar').fullCalendar({
defaultView: 'month',
header: {
left: '',
center: 'title'
},
editable: false,
selectable: true,
events: events,
dayClick: function() {
// alert('a day has been clicked!');
},
eventClick: function(event, jsEvent, view) {
showAppointmentDetails(event)
}
});
});
/*]]>*/
これは私の出力(fullcalendar_events_are_stored_in_same_date)です::
イベントが持っているは、私はこれは私のjQueryのコード..です
をデータベース5月のイベントを検索しています開始日は異なるが、同じ日付に格納される。助けが必要です...
@サルマンあなたは私を助けることができますか? – Ishkar
最初の 'theList'の長さは何ですか(ページが読み込まれるとき) – Salman
@salman 3 ..開始日が異なります。 – Ishkar