Deleting Multiple Rows
Deleting Multiple Rows
I have a datatable from which I am searching few records and adding into another datatable, now I want to delete all these records from my first datatable, how to to this.
Since there can be thousand of rows in my search criteria I am using the below method to add all the searched result into my another datatable ( below is the code)
var data = oTable._('tr', {"filter":"applied"});
selectedRecords.fnAddData(data);
Can somebody help in deleting all the rows which I got in data.
Thanks.
Since there can be thousand of rows in my search criteria I am using the below method to add all the searched result into my another datatable ( below is the code)
var data = oTable._('tr', {"filter":"applied"});
selectedRecords.fnAddData(data);
Can somebody help in deleting all the rows which I got in data.
Thanks.
This discussion has been closed.
Replies
Allan