Hi team,
I am using webdatagrid and within it i have added an unbound checkbox column.On checking that checkbox column i get a JS error, the details of which looks like
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC LM 8; InfoPath.3; managedpc)Timestamp: Fri, 8 Jun 2012 19:16:07 UTC
Message: Invalid argument.Line: 131Char: 4Code: 0URI: https://betacloud.accenture.com/leadershipcareers/ScriptResource.axd?d=_E27DPzFc4BxFtjMBATaGTPcuCCTBpvBF-t5HABSDLRQ6QBVk-WOpkjnDvRWQNMfXbxifr8Ne4SAvXVTkALC7oL2129z4DhyKnQzQ4MutxwgMJ8mVb8RGLheaKjBfCC5OmotmmpAN2om1vbTteDSq94mHAfWhmgYMgXlUx-Y43U1&t=4d438a3f
Can you let me know as to where i am going wrong ?
Hi,
I found the problem and the solution to this problem. Basically, my problem is that the url only has the domain and does not have the page. IIS is configured to redirect to my page default.aspx. When the user enters: http://www.domain.com, the url remains has http://www.domain.com. When I get in this scenario, the paging returns the invalid argument JS error.
To get around this problem I found easy solutions:
1 - Make sure the user uses the url http://www.domain.com/default.aspx.
and the preferred solution
2 - I added this line in my default.aspx page under the page_load event handler:
this.Form.Action = "Default.aspx";
That did the trick and I didn't need to do anything in IIS.
Thanks for your help.
Yves
Hello yveslangevin ,
You can change the domain from the IIS Bindings. Select the website from the IIS and select the Bindings from the available actions. Then edit the binding and edit the host name.
This will change the domain.
You can also check if all the resources for the ig controls are correctly deployed in your IIS as described here:
http://help.infragistics.com/NetAdvantage/ASPNET/2011.2/CLR4.0/?page=Deploying_Common_Assets.html
It would be also helpful to know which exact service release of 11.2 you’re currently using and on which browsers this occurs.
Let me know if you’re still encountering the issue after checking whether all the assets are properly deployed.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://ko.infragistics.com/support
I'm having the same issue with 11.2 using .net 4.0. What's interesting is that I never had the issue with .net 3.5.
Can you elaborate on the IIS setting? Where is this setting in IIS? I've been trying to find it but I'm not sure I know what to look for.
THanks
Pls change IIS setting to render full page URL - something like <domain>.com/virdir/default.aspx and it shoud work in IE8.
On debugging at IE, We are getting the "Invalid argument error" at below line
this._request.open(this._manager.getHttpVerb(),this._manager.getUrl(),this._async line
Any help would be really appreciated