Ok, try replacing the below line inside the .js file:
Code:
this.headers[i].onclick=function(){instanceOf.toggledisplay(this)}
with this instead:
Code:
if (this.headers[i].tagName=="OPTION"){
this.headers[i].parentNode.onchange=function(){
var targetoption=this.options[this.selectedIndex]
instanceOf.toggledisplay(targetoption)
}
}
else
this.headers[i].onclick=function(){instanceOf.toggledisplay(this)}
What it does is if the header is an OPTION tag, go to the parent SELECT tag to add the triggering event handler.
Bookmarks