I am trying to react to state changes of my checkbox:
<td>
@Html.CheckBoxFor(m => m.checkLangs[0].isChecked, new { onchange = "checkedChanged" })
<script>
var checkedChanged = function () {
alert("checkedChanged");
}
</script>
</td>
But unfortunaltey, I do see the checkbox but I do not see the alert.