UltraWebGrid, Version 11.1.20111.2178
We have an UltraWebGrid that has some check box columns. On certain client machines (a small percentage) we get the following error when a user checks or unchecks a checkbox:
Line: 7884
Char: 2
Unable to get the value of the property 'apply'. object is null or undefined.
The source is the ig_WebGrid_dom.js file.
The problem only happens on machines running IE9, although most machines running IE9 do not have the issue. We've tried with and without compatibility view set and it makes no difference.
As far as we van tell there are machines that have the same Browser and Operting System versions that behave differently. There may be differences that we don't know to look at.
Do you have any idea where we could look for the source of this problem? We cannot reproduce the issue on any development machine running any browser version, IE8 or IE9. We are just looking for some clue - we are out of ideas about what to look at.
By the way, I trie dto submit this as a support request but the Support page seems to be broken. I selected ASP.NET and then when I tried to select a product family I get a javascript error. I tried with IE8 and IE9 but both had the same result.
Hello wamanring,
Did you tested this behavior with the latest Service Release for version 11.1 (build 2238)?
Install this Service Release and make sure that you removed all references to previous versions (if you deployed JavaScript files you should change them too), then test the application again and inform me what the results are.
Hi I'm using Infragistics 10.3.20103.2217 with vs2010 in IE9. I have searched almost in all the forums and found that we need to have latest service release to avoid the script errors in ultrawebgrid. Can anyone please suggest me whether my infragistics version is the latest one or not? If not where can i get the new one? I see keys and downloads section but i didn't find any.Please guide me.
Unable to get value of the property 'init': object is null or undefined
I'm seeing this script error when i try to modify anything in a grid.
Resolved it after Updating Infragistics Scripts files with new version(10.3) and changing a piece of code in ig_webgrid.js file
for (var item in obj) { if (typeof (obj[item]) != "undefined" && obj[item] != null && !obj[item].tagName && !obj[item].disposing && typeof (obj[item]) != "string") to for (var item in obj) { if (typeof (obj[item]) != "undefined" && obj[item] != null && !obj[item].tagName && !obj[item].disposing && typeof (obj[item]) != "string" && obj.hasOwnProperty(item))