backing the workaround out. it causes regressions.

This commit is contained in:
sspitzer%netscape.com 2000-06-12 14:47:22 +00:00
parent ccb82cba9b
commit 8c994aadc2

View File

@ -157,8 +157,7 @@ function _awSetInputAndPopup(inputValue, popupValue, parentNode, templateNode)
//We need to set the value using both setAttribute and .value else we will
// loose the content when the field is not visible. See bug 37435
input[0].setAttribute("value", inputValue);
//comment this out as a workaround for bug #41143
//input[0].value = inputValue;
input[0].value = inputValue;
input[0].setAttribute("id", "msgRecipient#" + top.MAX_RECIPIENTS);
}
var select = newNode.getElementsByTagName(awSelectElementName());
@ -259,8 +258,7 @@ function awAppendNewRow(setFocus)
//We need to set the value using both setAttribute and .value else we will
// loose the content when the field is not visible. See bug 37435
input[0].setAttribute("value", "");
//comment this out as a workaround for bug #41143
//input[0].value = "";
input[0].value = "";
input[0].setAttribute("id", "msgRecipient#" + top.MAX_RECIPIENTS);
}
var select = newNode.getElementsByTagName(awSelectElementName());
@ -538,4 +536,4 @@ function awDisableAutoComplete(rowNumber)
inputElem = awGetInputElement(rowNumber);
selectElem = awGetPopupElement(rowNumber);
_awDisableAutoComplete(selectElem, inputElem)
}
}