I am using following block of code to mark rows in model for deletion.
if(delQliPri.data.length >0){but it is doing nothing. Don't understand where it is wrong. Help me in understanding it. I tried to implement it from this Skuid document
$.each(delQliPri.data,function(i,row){
console.log('RowID------>',row.Id);
delQliPri.deleteRow({Id:row.Id});
});
}
Dinesh Ramanadham