終日イベントが iNotes カレンダー コントロールで正しく表示されません。複数日のイベント (休日など) の最初の日のみが表示され、さらに別のカレンダー エントリに続く日が表示されます。
たとえば、1 月 20 日から 1 月 27 日の終日イベントは、予定 (または会議) をカレンダーに追加したときに 1 月 20 日にのみ表示されます。 、 時折)。
--- クレイジー --- そして今、(私の会社では) "誰も" カレンダー コントロールを信頼していません!
コード:
<xe:restService id="restCal" pathInfo="/calendar"
preventDojoStore="false">
<xe:this.service>
<xe:calendarJsonLegacyService
viewName="$calendar" colAltSubject="$151" colCalendarDate="$134"
colChair="$153" colConfidential="$154" colCustomData="$UserData"
colEndTime="$146" colEntryIcon="$149" colEntryType="$152"
colStartTime="$144" colStatus="$160" colSubject="$147"
contentType="text/json" databaseName="${javascript:sessionScope.calendarDBName}">
</xe:calendarJsonLegacyService>
</xe:this.service>
</xe:restService>
<xe:calendarView id="calendarAD"
storeComponentId="restCal"
type="#{javascript: null == viewScope.calendarType? 'W' : viewScope.calendarType }">
</xe:calendarView>
編集 (Paul のコメント後): firebug データは、別の予定データが書き込まれるまで、終日のイベントが同じ日付/時刻値で 3 回書き込まれることを示しています。
"@unid":"B4E518662A79F897C1257B160067B553",
"@noteid":"147E6",
"@position":"632",
"@siblings":"641",
"entrydata":
[
{
"@columnnumber":"0",
"@name":"$134",
"datetimelist":
{
"datetime":
[
{
"0":"20130219T040000"
}
]
}
},
// ========================================
// ... some more code
// ... than again the all day event with the SAME date/time value :
// ========================================
"@unid":"B4E518662A79F897C1257B160067B553",
"@noteid":"147E6",
"@position":"632",
"@siblings":"641",
"entrydata":
[
{
"@columnnumber":"0",
"@name":"$134",
"datetimelist":
{
"datetime":
[
{
"0":"20130219T040000"
}
]
}
},
// ========================================
// ... some more code
// ... and a 3rd time, with the SAME date/time value:
// ========================================
"@unid":"B4E518662A79F897C1257B160067B553",
"@noteid":"147E6",
"@position":"632",
"@siblings":"641",
"entrydata":
[
{
"@columnnumber":"0",
"@name":"$134",
"datetimelist":
{
"datetime":
[
{
"0":"20130219T040000"
}
]
}
},
// ========================================
// .... some more code
// ... then followed by a different appointment:
// ========================================
"@unid":"ADA38EEBCC643595C1257B160068056A",
"@noteid":"147EA",
"@position":"635",
"@siblings":"641",
"entrydata":
[
{
"@columnnumber":"0",
"@name":"$134",
"datetime":
{
"0":"20130221T090000"
}
},
// ========================================
//... some more code
//... AND THEN the all day event again, now with a changed date value:
// ========================================
"@unid":"B4E518662A79F897C1257B160067B553",
"@noteid":"147E6",
"@position":"634",
"@siblings":"641",
"entrydata":
[
{
"@columnnumber":"0",
"@name":"$134",
"datetimelist":
{
"datetime":
[
{
"0":"20130221T040000"
}
]
}
},
どんな解決策も大歓迎です
ウーヴェ