diff --git a/gulliver/js/grid/core/grid.js b/gulliver/js/grid/core/grid.js index 66cbc8049..f4b95372a 100755 --- a/gulliver/js/grid/core/grid.js +++ b/gulliver/js/grid/core/grid.js @@ -308,11 +308,13 @@ var G_Grid = function(oForm, sGridName){ } break; case 'checkbox': //CHECKBOX - attributesFalse = elementAttributesNS(aObjects[0], ''); - if((defaultValue === attributesFalse.falsevalue) || (defaultValue==='')) - aObjects[n].checked = false; - else - aObjects[n].checked = true; + if (_BROWSER.name != 'msie'){ + attributesFalse = elementAttributesNS(aObjects[0], ''); + if((defaultValue === attributesFalse.falsevalue) || (defaultValue==='')) + aObjects[n].checked = false; + else + aObjects[n].checked = true; + } break; case 'hidden': //HIDDEN if ((attributes.gridtype != 'yesno' && attributes.gridtype != 'dropdown') || typeof attributes.gridtype == 'undefined')