I have a web app that worked but after I upgraded to Windows 8 at some point this error is happening. I don't think it is Windows 8 but something to do with AJAX. When I start the app, this error errors about 10 times and then the page displays but the Menu at the top does not display. If I click on anything then the same error appears about a dozen times. Not sure what is going on.
JavaScript runtime error: Sys.ArgumentOutOfRangeException: Value must be an integer. Parameter name: x Actual value was -9999.8955078125.
http://forums.asp.net/t/1066968.aspx/2/10
There is a lot of google responses on JavaScript runtime error: Sys.ArgumentOutOfRangeException: Value must be an integer. Parameter name: x Actual value was -9999.8955078125.
Even the link above says it seems that AJAX is automatically generating problem code. Yet this just started happening for me.
IE 10.0
Yes, WebDataMenu, WinGrid, and other controls but it seem to have something to do with
Infragistics.Web.UI.WebScriptManager
Hello rookertrusted,
Thank you for contacting Infragistics!
We received your support request concerning an error with the menu on Windows 8, and this case has been assigned to me. Infragistics is dedicated to helping you solve this issue. Our team and I have done an initial review of your case and I have the following questions; a.) What browser are you using?b.) What version of the browser?c.) You are using the WebDataMenu correct?
Looking forward to hearing from you,
Sincerely,Mike P.Developer Support Engineer IIInfragistics, Inc.www.infragistics.com
Sys.UI.Point.registerClass(
'Sys.UI.Point');
Sys.UI.Bounds =
function Sys$UI$Bounds(x, y, width, height) {
/// <summary locid="M:J#Sys.UI.Bounds.#ctor" />
/// <param name="x" type="Number" integer="true"></param>
/// <param name="y" type="Number" integer="true"></param>
/// <param name="height" type="Number" integer="true"></param>
/// <param name="width" type="Number" integer="true"></param>
/// <field name="x" type="Number" integer="true" locid="F:J#Sys.UI.Bounds.x"></field>
/// <field name="y" type="Number" integer="true" locid="F:J#Sys.UI.Bounds.y"></field>
/// <field name="height" type="Number" integer="true" locid="F:J#Sys.UI.Bounds.height"></field>
/// <field name="width" type="Number" integer="true" locid="F:J#Sys.UI.Bounds.width"></field>
var e = Function._validateParams(arguments, [
{name:
"x", type: Number, integer: true},
"y", type: Number, integer: true},
"height", type: Number, integer: true},
"width", type: Number, integer: true}
]);
if (e) throw e;
this.x = x;
this.y = y;
this.height = height;
this.width = width;
}
Sys.UI.Bounds.registerClass(
'Sys.UI.Bounds');
the actual IG version is 12.1.20121.2156