FullCalendar events from asp.net ASHX page not displaying

前端 未结 7 1131
慢半拍i
慢半拍i 2021-01-14 15:36

I have been trying to add some events to the fullCalendar using a call to a ASHX page using the following code.

Page script:



        
7条回答
  •  广开言路
    2021-01-14 15:42

    Let's look at what we know and eliminate possibilities:

    • The ASHX page gets called and returnd the ... data:

      So the server-side portion is working just fine, and the code to call out to the server side is working.

    • I paste the values returned directly into the events it displays correctly.

      So the code that handles the response works correctly.

    Logically we see here that code that connects your server response to your calendar's input is not working. Unfortunately, I'm not up on the jQuery fullCalendar method, but perhaps you're missing a callback declaration?

提交回复
热议问题