SCRIPT5007: Unable to get value of the property '0': object is null or undefined - jquery.jqGrid.js
If you try to create data grid using mvc jqGrid and somehow the error above occur while debugging script using IE Debugger. Please follow this step to fix it.. The error because of in your mvc jqGrid coding, you not specify the json reader. Just add this line of code in your View and also in your mvc jqGrid . The Solution @{ MvcJqGrid.DataReaders.JsonReader jsonReader = new MvcJqGrid.DataReaders.JsonReader(); jsonReader.RepeatItems = false; jsonReader.Id = "dataJson"; } @(Html.Grid("GridDataBasic") .SetCaption("List Of User") ...