fullcalendar事件有关问题

fullcalendar事件问题
有没有哪位朋友用过fullcalendar

读取事件源这里,ajax返回的数据是正常的。但就是不显示出来,不知道哪里出问题了




    <script type="text/javascript">
        $(document).ready(function () {
            $("#calendar").fullCalendar({
                defaultView: 'month',
                header: {
                    left: 'prev,next today',
                    center: 'title',
                    right: ''
                },
                editable: true,
                //eventMouseover: function (event, jsEvent, view) {
                //    alert(event.title);
                //},
                events: '/Ajax/AjaxMethod.ashx',
                loading: function (bool) {
                    $('#loading').toggle(bool);
                }
            });
        });
</script>


返回的数据是这样的

[{'title': 'All Day Event','start': '2014-10-10'}]

--
如果把上面那段直接写在events:后面是正常的


------解决思路----------------------
http://stackoverflow.com/questions/2990565/fullcalendar-events-from-asp-net-ashx-page-not-displaying?rq=1