I am building a new connector and some of the JSON data has no string names i.e.
{"user1":["PC1"],"user2":["PC4","PC5"],"user3":["PC1","PC2"]…..
If I use magicparse I just get 2 (very long) rows, where I'm after a column of names and a column of where they are seen.
is it possible to reference the data in another way such as
for(var i = 0; i < data.length; i++){
datagrid.addCell(data[i].[1])
datagrid.addCell(data[i].[2])
…..