function
LoadCalendarWidget(cw_SiteUrl, cw_ListName, cw_ListNameForHeader, cw_EncodedListGuid, cw_ReturnRowCount, cw_CAML , cw_ShowIcon)
{
var
cw_ListUrlForHeader = cw_SiteUrl + '/lists/
' + cw_ListName;
var cw_IcsEventPath = cw_SiteUrl + "/_vti_bin/owssvr.dll?CS=109&Cmd=Display&List=" + cw_EncodedListGuid + "&CacheControl=1&Using=event.ics&ID=";
var cw_ListItemDetailPath = cw_SiteUrl + "/Lists/" + cw_ListName + "/DispForm.aspx?ID=";
var cw_CamlQuery = "";
if (cw_CAML.length < 2) {
cw_CamlQuery = "<Query><Where><Geq><FieldRef Name='
EventDate
' /><Value IncludeTimeValue='
TRUE
' Type='
DateTime
'><Today/></Value></Geq></Where></Query>";}
else { cw_CamlQuery = cw_CAML; }
// format header info
$('
#cw_HeaderTitle').html(cw_ListNameForHeader); // title
$('
#cw_HeaderLink').attr('href',cw_ListUrlForHeader); // link
$().SPServices({
operation:
"GetListItems"
,
webURL: cw_SiteUrl,
listName: cw_ListName,
async:
false
,
CAMLRowLimit: cw_ReturnRowCount,
CAMLQuery: cw_CamlQuery,
completefunc:
function
(xData, Status) {
$(xData.responseXML).SPFilterNode(
"z:row"
).each(
function
() {
var
cw_id = ($(
this
).attr(
"ows_ID"
));
var
cw_title = ($(
this
).attr(
"ows_Title"
));
if
(cw_title.length == 0) {cw_title = 'No event title.
';}
// By request, if an item is canceled, make that fact stand out.
cw_title = cw_title.replace("Deleted:","<span class='
cw_canceled
'>DELETED:</span> ");
cw_title = cw_title.replace("DELETED:","<span class='
cw_canceled
'>DELETED:</span> ");
cw_title = cw_title.replace("Cancelled:","<span class='
cw_canceled
'>CANCELLED:</span> ");
cw_title = cw_title.replace("CANCELLED:","<span class='
cw_canceled
'>CANCELLED:</span> ");
// Clean up date formats
var cw_startdateday = $.format.date(($(this).attr("ows_EventDate")), "M/d/yyyy");
var cw_startdatetime = $.format.date(($(this).attr("ows_EventDate")), "h:mm a");
var cw_startdate = cw_startdateday + '
-
' + cw_startdatetime;
var cw_enddateday = $.format.date(($(this).attr("ows_EndDate")), "M/d/yyyy");
var cw_enddatedaytime = $.format.date(($(this).attr("ows_EndDate")), "h:mm a");
var cw_enddate = cw_enddateday + '
-
' + cw_enddatedaytime
var cw_CX = '
<div class=
"cw_item"
>
';
if(cw_startdateday == cw_enddateday) // single day event
{
cw_CX += '
<table width=
"100%"
cellpadding=
"0"
>
';
cw_CX += '
<tr><td colspan=
"2"
><a href=
"' + cw_ListItemDetailPath + cw_id + '"
target=
"_new"
class=
"cw_title"
>
' + cw_title + '
</a></td></tr>
';
cw_CX += '
<tr><td><span class=
"cw_time"
>
' + cw_startdateday + '
' + cw_startdatetime + '
to
' + cw_enddatedaytime +'
</span></td>
';
cw_CX += '
<td align=
"right"
valign=
"top"
><a href=
"' + cw_IcsEventPath + cw_id + '"
target=
"_new"
>
';
if(cw_ShowIcon) {
cw_CX += '
<img src=
"FARM/Images/add_item.png"
class=
"cw_addIcon"
title=
"Add to Outlook Calendar"
/></a></td></tr>
';
}
else { cw_CX += '
[Add to Outlook]</a></td></tr>
'; }
cw_CX += '
</table>
';
}
else // multi day event
{
cw_CX += '
<table width=
"100%"
cellpadding=
"0"
>
';
cw_CX += '
<tr><td colspan=
"2"
><a href=
"' + cw_ListItemDetailPath + cw_id + '"
target=
"_new"
class=
"cw_title"
>
' + cw_title + '
</a></td></tr>
';
cw_CX += '
<tr><td><span class=
"cw_time"
>Start:
' + cw_startdate + '
</span></td><td align=
"right"
rowspan=
"2"
valign=
"top"
><a href=
"' + cw_IcsEventPath + cw_id + '"
target=
"_new"
>
';
if(cw_ShowIcon) {
}
else { cw_CX += '
[<a href=
"' + cw_IcsEventPath + cw_id + '"
target=
"_new"
>Add to Outlook]</a></td></tr>
'; }
cw_CX += '
<tr><td><span class=
"cw_time"
>End:
' + cw_enddate + '
</span></td></tr>
';
cw_CX += '
</table>
';
}
cw_CX += '
</div>';
$(
"#cw_ItemsContainer"
).append(cw_CX);
});
}
});
}