Blazor Kanban Board - Remote Data Binding
This sample demonstrates the way of data binding to the Kanban component using the remote service. The data source of Kanban is fetched from remote service using the DataManager component.
The Kanban supports data binding using the DataSource
property that can be assigned with the instance of DataManager to bind the remote data.
The DataManager that acts as an interface between the service endpoint and Kanban will require the following minimal information to interact with the service endpoint properly.
- DataManager.Url - Defines the service endpoint to fetch data.
DataManager.Adaptor - Defines the adaptor option. By default,
ODataAdaptor
is used for remote binding. The adaptor is responsible for processing responses and requests from/to the service endpoint. Syncfusion.Blazor.Data package provides some predefined adaptors that are designed to interact with particular service endpoints. They are:UrlAdaptor
- Use this to interact with any remote services.ODataAdaptor
- Use this to interact with OData endpoints.ODataV4Adaptor
- Use this to interact with OData V4 endpoints.WebApiAdaptor
- Use this to interact with Web API created under OData standards.WebMethodAdaptor
- Use this to interact with web methods.
In this demo, remote data is bound by assigning service data as an instance of SfDataManager
to the DataSource
property.