Yes, I get javascript errors. Here is the copy of what I just got:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDR; .NET4.0C; .NET4.0E; Zune 4.7)
Timestamp: Wed, 22 Dec 2010 19:07:50 UTC
Message: 'null' is null or not an object
Line: 871
Char: 2
Code: 0
Looking at asadmin.js in my installation, it looks like this is happening in the asTreeSelect(key) function (shown below).
function asTreeSelect(key){
var li = asVal(key);
asTreeClearSelected()
li.className += '-selected';
var p = li;
var i = 0;
do {
p = p.parentNode;
if (p.tagName =='UL'){
p.style.display = 'block';
};
i++;
} while (p.tagName != 'DIV' || i == 100);
};
Line 871 appears to be li.className += '-selected';
Thanks for looking into this.