Hi Peter
It’s the same problem in demo Master-Detail. I explain it with photo Photo illustration
Here is a lite code but it doesn’t work. My idea is to loop through the source data and unselect all the rows.
My code works only in our CRM so it doesn’t work in your local environment.
In my code, records is the name of an array.
$(“#attributeGrid”).jqxGrid({
ready: function () {
var len = records.length;
for (i = 0; i < len; i++) {
$(‘#attributeGrid’).jqxGrid(‘unselectrow’, i);
}
},
width: 680,
source: dataAdapter,
….
Regards
Lee