Hi folks,
I'm running the Grid SignalR example (found here http://demos.telerik.com/aspnet-mvc/grid/signalr) locally.
Even though it is running locally, the sample still fetches data from the Web, instead of my local machine as in:
var hubUrl = "http://demos.telerik.com/kendo-ui/service/signalr/hubs";
I want to run this entirely locally. I'm getting data from the local backend data service by running the code found here on my machine:
https://github.com/telerik/kendo-ui-demos-service
However, I'm stuck at what route on my local system replaces http://demos.telerik.com/kendo-ui/service/signalr/hubs
Would the local route be
var hubUrl = http://localhost:42471/hubs;
How do I set the route?
Thanks,
Ken