First we add a checkbox column to check multiple rows.
{
dataIndx: "state",
maxWidth: 30,
minWidth: 30,
align: "center",
resizable: false,
title: "",
menuIcon: false,
type: 'checkbox',
sortable: false,
editor: false,
dataType: 'bool'
},
Then implement dragModel.dragNodes to return checked rows.
dragModel:{
on: true,
diHelper:['OrderID'],
dragNodes: function(rd, evt){
return this.Checkbox('state').getCheckedNodes();
}
},