Вы закрываете метод подтверждения сразу после первого параметра (сообщения).Попробуйте это здесь:
<script type="text/javascript">
$(document).ready(function () {
$("#chkIssueCredit").change(function () {
if (!$(this).prop('checked')) {
bootbox.confirm("Are you sure you do not want to issue a credit? Please confirm.", function (result) {
if (result) {
$(this).prop('checked', true);
}
});
return false;
//if (!confirm("Are you sure you do not want to issue a credit? Please confirm.")) {
// $(this).prop('checked', true);
//};
};
});
});
</script>
Вы видите разницу?