diff --git a/ui/scripts/ui/dialog.js b/ui/scripts/ui/dialog.js index 9b659b26863..b560f1673a6 100644 --- a/ui/scripts/ui/dialog.js +++ b/ui/scripts/ui/dialog.js @@ -254,6 +254,11 @@ $input = $('').attr({ name: key, type: 'checkbox' }).appendTo($value); if (field.isChecked) { $input.attr('checked', 'checked'); + } else { + // This is mainly for IE compatibility + setTimeout(function() { + $input.attr('checked', false); + }, 100); } } } else if (field.dynamic) {