I am using Infragistics 15.2 with JQuery 1.11.3 and JQuery UI 1.11.4.
I have an igGrid using the "Append Rows on Demand" feature. My data source is a JSON object which is returned from an AJAX call.
Here is a sample of my data source with 1 record:
[{ "TotalRowCount":"1404", "DataRecords":[{ "ID":"ced1b903-d378-e511-80f1-8a6026a92b47", "ContractNumber":"16453", "Surname":"Smith", "Status":"New Order", "Cemetery":"Land of Memory", "CustomerName":"John Smith", "Store":"ABC Monument Works", "DateCreated":"10/22/2015 10:39:01 AM" }]}]
Here is the code for my grid:
UPDATE:
The initial chunk will now load successfully after changing this line
responseDataKey: "DataRecords"
to
responseDataKey: "0.DataRecords"
However, I am still unable to load additional rows when clicking the "Load more data" button. No AJAX call gets made when I click the button and the same is happening when I use loadTrigger: "auto".
Why would this be happening? Am I using an incompatible version of JQuery possibly?