React Scheduler - Web API Service
DevExtreme provides the DevExtreme.AspNet.Data extension to access an ASP.NET Web API service. This extension consists of two parts: the server-side part implements data processing on the server according to the protocol the Scheduler uses; the client-side part creates and configures a CustomStore to access the server from the client. The following code shows how to use the extension's client-side createStore method.
jQuery
JavaScript
$(function() { var serviceUrl = "http://url/to/my/service"; $("#schedulerContainer").dxScheduler({ dataSource: DevExpress.data.AspNet.createStore({ key: "ID", loadUrl: serviceUrl + "/GetAction", insertUrl: serviceUrl + "/InsertAction", updateUrl: serviceUrl + "/UpdateAction", deleteUrl: serviceUrl + "/DeleteAction" }), // ... }) });
Angular
TypeScript
HTML
import { DxSchedulerModule } from "devextreme-angular"; import CustomStore from "devextreme/data/custom_store"; import { createStore } from "devextreme-aspnet-data-nojquery"; // ... export class AppComponent { store: CustomStore; constructor() { let serviceUrl = "http://url/to/my/service"; this.store = createStore({ key: "ID", loadUrl: serviceUrl + "/GetAction", insertUrl: serviceUrl + "/InsertAction", updateUrl: serviceUrl + "/UpdateAction", deleteUrl: serviceUrl + "/DeleteAction" }) } } @NgModule({ imports: [ // ... DxSchedulerModule ], // ... })
<dx-scheduler ... [dataSource]="store"> </dx-scheduler>
Vue
App.vue
<template> <DxScheduler :data-source="dataSource" /> </template> <script> import 'devextreme/dist/css/dx.common.css'; import 'devextreme/dist/css/dx.light.css'; import DxScheduler from 'devextreme-vue/scheduler'; import { createStore } from 'devextreme-aspnet-data-nojquery'; const serviceUrl = "http://url/to/my/service"; const dataSource = createStore({ key: "ID", loadUrl: serviceUrl + "/GetAction", insertUrl: serviceUrl + "/InsertAction", updateUrl: serviceUrl + "/UpdateAction", deleteUrl: serviceUrl + "/DeleteAction" }); export default { components: { DxScheduler }, data() { return { dataSource } } } </script>
React
App.js
import React from 'react'; import 'devextreme/dist/css/dx.common.css'; import 'devextreme/dist/css/dx.light.css'; import Scheduler from 'devextreme-react/scheduler'; import { createStore } from 'devextreme-aspnet-data-nojquery'; const serviceUrl = "http://url/to/my/service"; const dataSource = createStore({ key: "ID", loadUrl: serviceUrl + "/GetAction", insertUrl: serviceUrl + "/InsertAction", updateUrl: serviceUrl + "/UpdateAction", deleteUrl: serviceUrl + "/DeleteAction" }); class App extends React.Component { render() { return ( <Scheduler dataSource={dataSource} /> ); } } export default App;
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.