﻿// CheckBox.ascx
function CheckboxBindCheck(source) {
    $(source).closest('.FormElement')
             .find('.CheckboxValue').val($(source).is(':checked') ? true : '');
}
