Welcome to the Vue feedback portal. We’re happy you’re here! If you have feedback on how to improve the Vue, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

The documentation depicts that the UrlAdapter should return the events in format:

Screenshot 2020-02-15 at 12.22.21.png

But it doesn't work. It just fails silently. After digging around and debugging I found out that leaving OUT the count -parameter, suddenly it starts working. I have two JSON responses below. First one is the one this document describes and the second one is the one that is working.

This does not work: 

{"result":{"Id":"544","Subject":"#544 Teppo Testinen, [email protected]","StartTime":"2020-02-05T00:00:00+02:00","EndTime":"2020-02-10T00:00:00+02:00"},"count":1}


This DOES work:


{"result":[{"Id":"544","Subject":"#544 Teppo Testinen, [email protected]","StartTime":"2020-02-05T00:00:00+02:00","EndTime":"2020-02-10T00:00:00+02:00"}]}


The version I'm using is: 17.4.43