@model HelloWorldMvcApp.SampleViewModel
<script src='https://code.jquery.com/jquery-2.1.3.min.js'></script>
<script type="text/javascript">
$("#tglSendValue").click(function(e){
$("#sendvalue").val($("#sendvalue").val() == "true" ? false : true);
@Html.CheckBox("tglSendValue", new {@id="tglSendValue", @class="cmn-toggle cmn-toggle-round"})
<label for="tglSendValue"></label>
@Html.TextBoxFor(m=> m.sendvalue)