Blazor Scheduler Example - Remote Data
| |||||||||||||||||||||||||||||||||||
|
This demo showcases the way of binding remote services to the Scheduler component. Here, the DataManager is used to bind remote data with Scheduler.
Scheduler can be bound to remote services by assigning the DataSource property with an instance of DataManager.
The DataManager acts as an interface between the service endpoint and the Scheduler and requires the following minimal information to interact with the service endpoint properly:
Url- Defines the service endpoint from where the data needs to be fetched.Adaptor- Defines the adaptor option. By default,ODataAdaptoris used for remote binding.
The adaptor is responsible for processing responses and requests from/to the service endpoint. The Syncfusion.Blazor.Data package provides predefined adaptors designed to interact with particular service endpoints:
UrlAdaptor- Use this to interact with any remote services. This is the base adaptor for all remote-based adaptors.ODataAdaptor- Use this to interact with OData endpoints.ODataV4Adaptor- Use this to interact with OData V4 endpoints.WebApiAdaptor- Use this to interact with Web APIs created under OData standards.