When I drag the vertical splitbar, separating the navigitionpanel from the detailpanel, to the far right or far left, I get the following runtime error:
A Runtime Error has occured
Do you wish to Debug?
Line: 524
Error: Invalid argument
Yes No
The error only appears in IE (I'm using 7), and not in Firefox (using 2.0.0.14).
Debugging the error points to file: WebResource.axd, code block:
function WebForm_SetElementHeight(element, height) {
if (element && element.style) {
element.style.height = height + "px";
}
}
function WebForm_SetElementWidth(element, width) {
if (element && element.style) {
element.style.width = width + "px";
<== LINE IN ERROR
}
}
function WebForm_SetElementX(element, x) {
if (element && element.style) {
element.style.left = x + "px";
}
}
Any suggestions how to solve this?
Eric