I use the following to display a checkbox linked to my model:
@Html.CheckBoxFor(model => model.GenerateAppendixA)
Based on various other user interactions on the page, sometimes I need to check this checkbox and then disable it. I use the following jQuery to do this:
$('input:checkbox[name=GenerateAppendixA]').attr("checked", false);
$('input:checkbox[name=GenerateAppendixA]').attr("disabled", false);
However, when I check the box using jQuery the state of the boolean value in my model is always 'false'. Can anyone explain why?