Fix for bug 43468. We need also to use .value when we pre file a recipient else we will loose the content of every non visible fields! This is more a work around that the reall fix which should be in the textcontrolframe code. R=putterman

git-svn-id: svn://10.0.0.236/trunk@73297 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ducarroz%netscape.com
2000-06-27 06:14:42 +00:00
parent 500003732d
commit 28728c1f75

View File

@@ -157,6 +157,7 @@ function _awSetInputAndPopup(inputValue, popupValue, parentNode, templateNode)
if ( input && input.length == 1 )
{
input[0].setAttribute("value", inputValue);
input[0].value = inputValue;
input[0].setAttribute("id", "msgRecipient#" + top.MAX_RECIPIENTS);
}
var select = newNode.getElementsByTagName(awSelectElementName());