Hi, since I can't find a place to report bugs in IE8, I am posting this here.
When an ASP.Net disables a checkbox on a webpage, if this page is being run
in IE8, the span that is created to contain the checkbox is also disabled. If
you have client-side scripts (such as javascript) on the page that enable or
disable the checkbox, you will also have to re-enable the parent span.
i.e.
javascript code for IE7, Firefox, etc:
"var chkbox = document.getElementById(<%checkbox1.ClientID%>);
chkbox.disabled = false;"
will have to be modified:
"var chkbox = document.getElementById(<%checkbox1.ClientID%>);
chkbox.disabled = false;
chkbox.parentNode.disabled = false;"
in order for the checkbox to be properly re-enabled.
Remember, this error only occurs if the checkbox is disabled in the ASP.Net
code behind.
----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.
http://www.microsoft.com/communities...orer. general