Hi, I’m using a web Form to create an entry to the “Event” table.
Those events are displayed in the DTHMLX Calendar in another view.
Is there a way to push the new “Event” to the “already opened calendar” with Signal R ?
I tried this in my controller after saving event and it did not work :
var hubContext = Microsoft.AspNet.SignalR.GlobalHost.ConnectionManager.GetHubContext<SchedulerHub>();
hubContext.Clients.All.Send((new SchedulerAjaxData(event)).ToString());
thank you