I defined an OnChange Client Event for the Calendar like so
function Calendar_OnChange(e)
{
datestr = formatDate(e.date);
var window = getWindow();
$.ajax({
url: 'LoadContent',
type: 'GET',
data: "date=" + datestr,
success: function (result) {
// process the results from the controller
showPopup();
$('#EventWindow').data('tWindow').content(result);
},
error: function () {
$('#EventWindow').data('tWindow').content('Error Occured');
}
});
}
the Action to 'LoadContent' retrieves what I need and returns it using Ajax to this script where I then use jQuery to change the div tag to show my content on the Telerik Window.