Blazor Kanban Board - Remote Data Binding
This sample demonstrates binding remote data to the Kanban component using the DataManager.
Assign an instance of DataManager to the Kanban DataSource to enable remote data binding. The DataManager acts as an interface between the service endpoint and the Kanban component and requires the following minimal configuration:
- DataManager.Url – Defines the endpoint to fetch data.
- DataManager.Adaptor – Specifies the adaptor. By default,
ODataAdaptoris used. The adaptor processes requests/responses. The Syncfusion.Blazor.Data package includes adaptors like:UrlAdaptor– Interact with generic remote services.ODataAdaptor– For OData endpoints.ODataV4Adaptor– For OData V4 endpoints.WebApiAdaptor– For Web API endpoints under OData standards.WebMethodAdaptor– For web methods.
In this demo, remote data is bound by assigning service data through SfDataManager to the DataSource property.