Fixed an issue of deleting records when the user tries to delete multiple records. Fixes #6098

This commit is contained in:
Rahul Shirsat
2021-01-20 12:39:12 +05:30
committed by Akshay Joshi
parent 9fa29457a4
commit b3ca172f3a
2 changed files with 2 additions and 1 deletions

View File

@@ -3551,7 +3551,7 @@ define('tools.querytool', [
} else {
dataView.beginUpdate();
for (var j = 0; j < rows.length; j++) {
var item = grid.getDataItem(rows[j]);
var item = grid.getData().getItemById(rows[j]);
data.push(item);
dataView.deleteItem(item[self.client_primary_key]);
}