Make sure to look at the select element for onchange handlers, not the anonymous children. Not part of the build.

git-svn-id: svn://10.0.0.236/trunk@113015 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bryner%netscape.com
2002-01-28 00:32:11 +00:00
parent a637516138
commit 840144c2da
2 changed files with 4 additions and 4 deletions

View File

@@ -70,8 +70,8 @@
selection.select(row.value);
select.selectElement.setOptionsSelectedByIndex(row.value, row.value,
true, true, false, false);
if ("onchange" in this)
this.onchange();
if ("onchange" in select)
select.onchange();
}
}
]]>

View File

@@ -70,8 +70,8 @@
selection.select(row.value);
select.selectElement.setOptionsSelectedByIndex(row.value, row.value,
true, true, false, false);
if ("onchange" in this)
this.onchange();
if ("onchange" in select)
select.onchange();
}
}
]]>