I'm using checkBoxSelectionModel in a gridpanel and I want to write some json text to the response stream to set some of the records (rows) selected (so the checkbox are checked)
For example I can set row datas by this json syntax:
Response.Write("{\"records\":[" + jsonData + "],\"totalCount\":\"" + list.Count + "\"}");
So, how can I check the checkboxes using json syntax?