I was having an issue with the ModalPopup not hiding SELECTs. Looked at the ModalPopupBehavior.js file and noticed it does try to compensate for the SELECT bug in IE.
But first it trys to detect if IE is version 6 with:
if (CommonToolkitScripts.isBrowserIE6()) {
...
}
The reason I started digging further was my browser is version 6 and it didn't seem to be running through the loop that is supposed to be hiding the SELECTs.
So I attempted
alert(CommonToolkitScripts.isBrowserIE6()); and get a CommonToolkitScripts is undefined
What am I doing wrong? I am declaring the script manager.... looked at the sample and couldn't figure out what I am doing differently. Where is this CommonToolkitScripts object located? What needs to be done to bring this to the browser correctly?
Thanks in advance,
Kelly