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!>
Thanks for joining our community and helping improve Syncfusion products!
The documentation depicts that the UrlAdapter should return the events in format:
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, teppo@testinen.com","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, teppo@testinen.com","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