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

This commit is contained in:
ducarroz%netscape.com 2000-06-27 06:14:42 +00:00
Родитель b85f37fcb6
Коммит 5b40499ef9
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -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());