Hi,
we are getting that runtime error in our project... recently we covert the our application from dotnet 1.1 version to dotnet 4.0 present we are using infragistics v10.3 control..
can you please tell me why we are getting this error and can you please suggest how to resolve this error...
Thhank you,
siva kumar goru.
DR,
The latest version of Visual Studio that NetAdvantage 2004 Volume 3 supports is Visual Studio 2003 and as such was only supported in .NET 1.x. Have you tried upgrading to a later volume of NetAdvantage that supports .NET 4.0 like NetAdvantage 2011 Volume 1?
Hi Alan and Siva,
I also encountered the same problem while upgrading my Visual Studio 1.1 framework code to Visual Studio 4.0. My code is referring to 2004 Volume 3 assemblies of Infragistics controls. Though, I am not getting any HTTP 404 error. I'm getting below runtime error:
"Microsoft JScript runtime error: The value of the property 'igtbl_initGrid' is null or undefined, not a Function object"
I searched on internet about the issue and tried quite a few things but nothing worked out.
Also, I get similar error for all the Infragistics controls being used in my code in different pages.
Quick help on this issue will be appreciated.
Thanks
DR
Siva,
The IE9 Developer Tools: Network Tab blog post from the IEBlog should help you understand how to use the network tab to look at requests in IE.
If you are unsure why I suggested looking for 404, it is because 404 is the HTTP status code for not found. More on HTTP status codes can be found in the HTTP specification if you search for "Status Code Definitions". They are in section 10 which begins on page 57.
Let me know if you have any questions with this matter.
can you please explain more clear.....
Thanks,
Siva kumar Goru.
It appears as though the JavaScript related to the UltraWebGrid isn't being loaded on the client. With .NET 1.x the scripts needed to be deployed separately and with .NET 2.0 and later they are included in the assemblies. If you use a tool to look at the requests, I would expect that the requests for the scripts are returning 404. If that is the case what is the path that the scripts are being requested from, is it requesting a file or WebResource.axd?
For looking at the requests you can use the developer tools in Internet Explorer or FireBug in Firefox. You could also use a tool that looks at requests on the machine such as Fiddler.