Fix some stuff.

This commit is contained in:
blakeross%telocity.com 2003-08-06 08:43:56 +00:00
parent 73a5e35088
commit 5eb9b0bf3b

View File

@ -78,7 +78,7 @@
var popupset = document.getAnonymousElementByAttribute(this, "anonid", "popupset");
popupset.appendChild(popup);
}
popup.mParentTextbox = this;
popup.mInput = this;
popup;
]]></field>
@ -184,14 +184,13 @@
<property name="open"
onget="return this.getAttribute('open') == 'true';">
<setter><![CDATA[
var historyPopup = document.getAnonymousElementByAttribute(this, "anonid", "historydropmarker");
if (val) {
this.setAttribute("open", "true");
historyPopup.showPopup();
this.showHistoryPopup();
}
else {
this.removeAttribute("open");
historyPopup.hidePopup();
this.closePopup();
}
]]></setter>
</property>