MisterJames / CollidR

An open source project leveraging SignalR to make real time forms easy.
Apache License 2.0
22 stars 5 forks source link

Create MVC Scaffolder that includes the RegisterCollidR bits #42

Open dpaquette opened 11 years ago

dpaquette commented 11 years ago

Basically just extend the built in MVC Scaffolder to include this section at the bottom of the Edit view:

@section Scripts {

@Scripts.Render("~/bundles/jqueryval")

<script src="~/Scripts/jquery.signalR-1.1.3.js"></script>
<script src="~/Scripts/bootstrap.js"></script>
@(Html.RegisterCollidRFor(p => p.PersonId))

}