I’m trying to load the grid with very simple json data and I’m trying to mark the first row as selected initially as described here: http://docs.dhtmlx.com/grid__data_formats.html#jsonformat.
However the first row isn’t selected as expected - any idea as to why this is anyone?
JSON data
var data = {"total_count":2,"pos":0,"rows":[
{"id":1,"selected":true,"call":true,"data":["2016-06-21 00:00:00","1","Account Type 1","123456","text here...","500","0","SEK","SEVAT"]},{"id":2,"selected":false,"data":["2016-06-23 00:00:00","2","Account Type 2","7891011","some message stuff here...","0","200","SEK","SEVAT"
]}
]};
Grid.init
....
mygrid.parse(data, "json");