Blazor Scheduler Example - Custom Binding
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
This sample demonstrates the usage of custom data binding in the Scheduler component.
Custom data binding can be performed in the Scheduler component by providing a custom adaptor class and overriding the Read or ReadAsync method of the DataAdaptor abstract class. The CRUD operations for the custom bounded data in the Scheduler component can be implemented by overriding the following CRUD methods of the DataAdaptor abstract class:
Insert/InsertAsync- Performs Insert operation.Remove/RemoveAsync- Performs Remove operation.Update/UpdateAsync- Performs Update operation.BatchUpdate/BatchUpdateAsync- Performs BatchUpdate operation.
In this demo, CRUD operations for the custom bounded data are performed using the methods of DataAdaptor abstract class. Similarly, you can perform Batch Update operations by using the BatchUpdate/BatchUpdateAsync methods.