All I want to know is the proper syntax for using Bootstrap Toggle with the Html.CheckBoxFor HTML helper in ASP.NET MVC.
< input type="checkbox" checked data-toggle="toggle" data-on="Yes" data-off="No" data-width="15" data-height="15" data-onstyle="success" data-offstyle="danger" data-style="ios">
The question is how to use the Html.CheckBoxFor + Bootstrap Toggle, not the Html.CheckBoxFor himself
@Html.CheckBoxFor(model => model.Active, new { ?Bootstrap Toggle? })