Hi, I have this implemented and it works great http://arshaw.com/fullcalendar/. I want to load my events from either a .ashx file or .asmx file and I can't seem to figure it out for the life of me. When I hard code the events in the javascript everything
works great, but when I try to return the events from a .ashx or .asmx file it doesn't work at all. What am I doing wrong? The code hits my breakpoint on my function in the .ashx and I get no errors. Here is my .ashx example:
<script type='text/javascript'>
$(document).ready(function () {
var date = new Date();
var d = date.getDate();
var m = date.getMonth();
var y = date.getFullYear();
var calendar = $('#calendar').fullCalendar({
header: {
left: 'prev,next today', ...
Go to the complete details ...