Skip to content
/ CollidR Public
forked from MisterJames/CollidR

An open source project leveraging SignalR to make real time forms easy.

License

Notifications You must be signed in to change notification settings

olegil/CollidR

 
 

Repository files navigation

CollidR

An open source project leveraging SignalR to make real time forms easy.

Check out the introduction on YouTube:
http://www.youtube.com/watch?v=WRGIUJaChyI

Getting it Running in Your Project

Run the CollidR.Mvc5.Sample project (go to /person) to get a sense of what's going on. It's even better with two browsers running!

To get it going in your MVC5 project

Install-Package CollidR
  • In the Startup class for your project, call app.MapSignalR() in the Configuration method
  • Register a new bundle for the SignalR scripts in BundleConfig
    bundles.Add(new ScriptBundle("~/bundles/signalr").Include("~/Scripts/jquery.signalR-{version}.js"));
  • In your Edit view add the CollidR editor pane and alert area using the following Html helper
    @Html.CollidREditorPane()
    @Html.CollidRAlertArea()
  • Also in the edit view, render the SignalR script bundle and create an instance of the CollidR proxy and Register the client using the following html helper
    @Scripts.Render("~/bundles/signalr")
    @Html.RegisterCollidRFor(p => p.PersonId)

Note: Users must be authenticated before accessing any pages that use CollidR

Contributing

Fork away! You'll need to complete a Contributors Agreement before I can do a pull request. This will help to make sure that everyone who wants to use the project freely can do so under the license of this project. Speaking of license...

License

Licensed under the Apache License, Version 2.0.

Acknowledgements

  • Be sure to check out the SignalR Project
  • We're trying to be awesome at install. Thanks to the Glimpse folks for setting the bar good and high

About

An open source project leveraging SignalR to make real time forms easy.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 80.9%
  • C# 17.3%
  • HTML 1.4%
  • PowerShell 0.2%
  • CSS 0.2%
  • Batchfile 0.0%