BUG 7372 Fixed. New grid dropdow is disabled in IE
This commit is contained in:
@@ -357,9 +357,16 @@ var G_Grid = function(oForm, sGridName){
|
||||
oNewSelect.setAttribute(aAttributes[a].name,aAttributes[a].value);
|
||||
}
|
||||
if (aAttributes[a].name == 'disabled'){
|
||||
if (_BROWSER.name == 'msie'){
|
||||
if (aAttributes[a].value=='true'){
|
||||
oNewSelect.setAttribute(aAttributes[a].name,aAttributes[a].value);
|
||||
}
|
||||
}
|
||||
else{
|
||||
oNewSelect.setAttribute(aAttributes[a].name,aAttributes[a].value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
attributes = elementAttributesNS(aObjects[0], 'pm');
|
||||
//var MyAtt = attributes;
|
||||
|
||||
Reference in New Issue
Block a user