Blazor Scheduler Example - Custom Binding
This sample demonstrates the usage of custom data binding in the Scheduler component.
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
The custom data binding can be performed in the Scheduler component by providing the 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 is performed using the methods of DataAdaptor abstract class. Similarly, you can perform Batch Update operations by using the BatchUpdate/BatchUpdateAsync
methods.