I\'m looking for a simple example on how to use SlickGrid when trying to retrieve the data as JSon via jQuery.Ajax. I was also unable to find any documentation of the SlickG
The solution is simple, but they do not explicitly state how to do this on their wiki page.
SlickGrid expects JSON to be in object form. So if for any reason it is in string form just use:
JSON.parse(jsonString);
If you're loading from ajax, just simply do this:
$.getJSON("file.json", function(data) {
grid = new Slick.Grid("#myGrid", data, columns, options);
}