I was trying some of the features of igGrid, and come across an error every time I run the grid with hiding feature on, and I only get it if I use IE7.
The error from IE was "Stop running this script? A script on this page is causing browser to run slowly..." then since I'm in debugging mode, I also got an error from jQuery js file: Microsoft JScript runtime error:Out of stack space.
Is this a known bug? Has anyone had this problem before ? if so, is there a way to fix this issue ?
Ok, just had to make sure.. Thanks guys
Hi Jeffrey,I used the 1010 build for the loader as a demonstration that neither it (the igLoader), nor the MVC DLL had to be from the latest SR in order to get things rolling :)But sure - it's always better to reference all Infragistics resources from the same build as you suggest.Cheers!
It's working !! :)
With the same exact grid configuration my grid is working after I updated the script to use 2049 build instead of 2023.
One last question, in your DefinedColumns.html, you have the script refererence to 1010 build like this:
<!--IG Loader--> <script type="text/javascript" src="http://cdn-na.infragistics.com/jquery/20121/1010/js/infragistics.loader.js"></script>
It should be 2049 right ? just like the one in loader or is there a reason you're using 1010 ?
below is your loader code:
@(Html.Infragistics() .Loader() .ScriptPath("http://cdn-na.infragistics.com/jquery/20121/2049/js/") .CssPath("http://cdn-na.infragistics.com/jquery/20121/2049/css/") .Render() )
Thanks again,
Jeffrey
Cool, thanks !! I'll try it and report back
Regards,
Hi Jeffrey,Allow me to go through your questions one by one :)
jAndika said:However, when I copied your code and created a test page, the grid works. I'm starting to think the culprit might be the MVC helper is not producing correct jQuery script. Is that possible ?
jAndika said:Also, do I have to specify the 'resources' in the igLoader script ? Since I have other grid features turned on, if I just do something like this below it also should work right ?
jAndika said: Even if I turned off everything except Hiding() and added 'igGrid.Hiding' as a resource in loader, I still get the same error. Am I doing something wrong here ?