I'm building the grid using javascript and then I render this grid into the div element that is nested within the html element. In one of the columns in the grid I'm using the checkbox. If I check this checkbox on runtime (while debugging) I get the error in ScriptResource.axd (the debugger pops it up) in this method:
switch(Sys.Browser.agent) {
...(some code here)...
//AT THIS POINT IT CRASHES. RETURNS UNSPECIFIED ERROR.
var clientRects = element.getClientRects();
....
}
In debug mode in IE : If I put the grid outside of the form it works ok.
