Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
255
Object doesn't support property or method 'igGrid
posted
I downloaded igGrid sample code that uses the Northwind database and I'm receiving this error: Line: 29 Error: Object doesn't support property or method 'igGrid'
Here is a partial code snapshot: $("#grid").igGrid({ primaryKey: "ProductID", caption: "<span> <img src=\"//www.infragistics.com/media/441501/horz_logo.png\" alt=\"Infragistics\"></span>", width: '100%', columns: [ { headerText: "Product ID", key: "ProductID", dataType: "number", width: "15%", hidden: true }, { headerText: "Image", key: "ImageUrl", dataType: "string", width: "15%", template: "<img style=\"height:50px;\" src=\"${ImageUrl}\"/>" }, { headerText: "Product Name", key: "ProductName", dataType: "string", width: "25%" }, { headerText: "Category", key: "CategoryName", dataType: "string", width: "25%" }, { headerText: "Units In Stock", key: "InStock", dataType: "number", width: "35%" } ],
Thanks.