fixing a problem with multiple (or size>1) select fields in/for IE (selectbox hack)

This commit is contained in:
Klaus Leithoff 2010-01-13 09:30:12 +00:00
parent 2f45dae0bd
commit 5bb170b40e

View File

@ -305,7 +305,8 @@ function dropdown_menu_hack(el)
{
if(el.runtimeStyle.behavior.toLowerCase()=="none"){return;}
el.runtimeStyle.behavior="none";
if (el.multiple ==1) {return;}
if (el.size > 1) {return;}
var ie5 = (document.namespaces==null);
el.ondblclick = function(e)
{