I need to disallow rows from being dropped into my main grid, based on conditions in the source grid column. If the 1st column in the dropped row from the source grid is not checked, I don't want the row added.
How would I update the below function to do this.
drop: function (evt, uiDrop) {
//only add if the source column is checked
this.addNodes([node], isNaN(rowIndx) ? null : rowIndx);
}