const DemoApp = angular.module('DemoApp', ['dx']);
const BASE_PATH = 'https://js.devexpress.com/Demos/NetCore/';
DemoApp.controller('DemoController', ($scope) => {
const store1 = createStore();
const store2 = createStore();
$scope.scheduler1Options = createOptions(store1);
$scope.scheduler2Options = createOptions(store2);
const connection = new signalR.HubConnectionBuilder()
.withUrl(`${BASE_PATH}schedulerSignalRHub`, {
skipNegotiation: true,
transport: signalR.HttpTransportType.WebSockets,
})
.configureLogging(signalR.LogLevel.Information)
.build();
connection.start()
.then(() => {
connection.on('update', (key, data) => {
store1.push([{ type: 'update', key, data }]);
store2.push([{ type: 'update', key, data }]);
});
connection.on('insert', (data) => {
store1.push([{ type: 'insert', data }]);
store2.push([{ type: 'insert', data }]);
});
connection.on('remove', (key) => {
store1.push([{ type: 'remove', key }]);
store2.push([{ type: 'remove', key }]);
});
});
});
const createStore = function () {
const url = `${BASE_PATH}api/SchedulerSignalR`;
return DevExpress.data.AspNet.createStore({
key: 'AppointmentId',
loadUrl: url,
insertUrl: url,
updateUrl: url,
deleteUrl: url,
onBeforeSend(method, ajaxOptions) {
ajaxOptions.xhrFields = { withCredentials: true };
},
});
};
const createOptions = function (store) {
return {
dataSource: store,
timeZone: 'America/Los_Angeles',
remoteFiltering: true,
views: ['day', 'workWeek'],
currentView: 'day',
currentDate: new Date(2021, 3, 27),
startDayHour: 9,
endDayHour: 19,
height: 600,
dateSerializationFormat: 'yyyy-MM-ddTHH:mm:ssZ',
textExpr: 'Text',
descriptionExpr: 'Description',
startDateExpr: 'StartDate',
endDateExpr: 'EndDate',
allDayExpr: 'AllDay',
};
};
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/22.2.6/css/dx.light.css" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script>
<script>window.angular || document.write(decodeURIComponent('%3Cscript src="js/angular.min.js"%3E%3C/script%3E'))</script>
<script src="https://cdn3.devexpress.com/jslib/22.2.6/js/dx.all.js"></script>
<script src="https://unpkg.com/devextreme-aspnet-data@2.9.0/js/dx.aspnet.data.js"></script>
<script src="js/signalr.js"></script>
<script src="../signalr-session-id.js"></script>
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body class="dx-viewport">
<div class="demo-container" ng-app="DemoApp" ng-controller="DemoController">
<div class="schedulers">
<div class="column-1">
<div dx-scheduler="scheduler1Options" id="scheduler1"></div>
</div>
<div class="column-2">
<div dx-scheduler="scheduler2Options" id="scheduler2"></div>
</div>
</div>
</div>
</body>
</html>
.schedulers {
display: flex;
}
.column-1 {
padding-right: 5px;
}
.column-2 {
padding-left: 5px;
}
.dx-scheduler-small .dx-scheduler-view-switcher.dx-tabs {
display: table;
}
using DevExtreme.AspNet.Data;
using DevExtreme.AspNet.Mvc;
using DevExtreme.MVC.Demos.Hubs;
using DevExtreme.MVC.Demos.Models;
using Microsoft.AspNet.SignalR;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Formatting;
using System.Web;
using System.Web.Http;
namespace DevExtreme.MVC.Demos.Controllers.ApiControllers {
public class SchedulerSignalRController : ApiController {
InMemoryAppointmentsDataContext _data = new InMemoryAppointmentsDataContext();
IHubContext hubContext;
public SchedulerSignalRController() {
hubContext = GlobalHost.ConnectionManager.GetHubContext<SchedulerSignalRHub>();
}
[HttpGet]
public HttpResponseMessage Get(DataSourceLoadOptions loadOptions) {
return Request.CreateResponse(DataSourceLoader.Load(_data.Appointments, loadOptions));
}
[HttpPost]
public HttpResponseMessage Post(FormDataCollection form) {
var values = form.Get("values");
var newAppointment = new Appointment();
JsonConvert.PopulateObject(values, newAppointment);
Validate(newAppointment);
if(!ModelState.IsValid)
return Request.CreateErrorResponse(HttpStatusCode.BadRequest, ModelState.GetFullErrorMessage());
_data.Appointments.Add(newAppointment);
_data.SaveChanges();
var groupName = GetGroupName();
if(groupName != null) {
hubContext.Clients.Group(GetGroupName()).insert(newAppointment);
}
return Request.CreateResponse(HttpStatusCode.Created);
}
[HttpPut]
public HttpResponseMessage Put(FormDataCollection form) {
var key = Convert.ToInt32(form.Get("key"));
var values = form.Get("values");
var appointment = _data.Appointments.First(a => a.AppointmentId == key);
JsonConvert.PopulateObject(values, appointment);
Validate(appointment);
if(!ModelState.IsValid)
return Request.CreateErrorResponse(HttpStatusCode.BadRequest, ModelState.GetFullErrorMessage());
_data.SaveChanges();
var groupName = GetGroupName();
if(groupName != null) {
hubContext.Clients.Group(GetGroupName()).update(key, appointment);
}
return Request.CreateResponse(HttpStatusCode.OK);
}
[HttpDelete]
public void Delete(FormDataCollection form) {
var key = Convert.ToInt32(form.Get("key"));
var appointment = _data.Appointments.First(a => a.AppointmentId == key);
_data.Appointments.Remove(appointment);
_data.SaveChanges();
var groupName = GetGroupName();
if(groupName != null) {
hubContext.Clients.Group(GetGroupName()).remove(key);
}
}
string GetGroupName() {
var cookie = Request.Headers.GetCookies(SchedulerSignalRHub.GroupIdKey).FirstOrDefault();
if(cookie != null) {
return cookie[SchedulerSignalRHub.GroupIdKey].Value;
}
return null;
}
}
}
using System;
using System.Threading.Tasks;
using System.Web;
using Microsoft.AspNet.SignalR;
namespace DevExtreme.MVC.Demos.Hubs {
public class SchedulerSignalRHub : Hub {
public static string GroupIdKey = "dx-SchedulerSignalRHub-groupId";
private static readonly Random random = new Random();
public override Task OnConnected() {
Cookie cookie;
Context.RequestCookies.TryGetValue(GroupIdKey, out cookie);
string groupId;
if(cookie != null) {
groupId = cookie.Value;
} else {
groupId = random.Next(0, int.MaxValue).ToString();
var newCookie = new HttpCookie(GroupIdKey, groupId);
Context.Request.GetHttpContext().Response.Cookies.Add(newCookie);
}
Groups.Add(Context.ConnectionId, groupId);
return base.OnConnected();
}
}
}