I get a JSON as a response, from an ajax call, contents of which I then want to be loaded in the grid.
The response I get looks like this:
How can I make this kind of JSON response work with the parse method of dhtmlxGridObject?
Something like:
result = {“rows”:{“Added to index”:[“file1”, “file2”,…"], “Conflicting”:[“file3”, “file4”,…"], “Removed”:[“file5”, “file6”,…"]}}
importConfigurationStatusGrid.parse(result, "json");