* Editor actions *
****************************************************************/
public void deleteRecords(int[] rowIndexes) {
DatasetEditorTable editorTable = getEditorTable();
if (editorTable != null) {
editorTable.fireEditingCancel();
for (int index : rowIndexes) {
DatasetEditorModelRow row = getRowAtIndex(index);
if (!row.isDeleted()) {
int rsRowIndex = row.getResultSetRowIndex();
row.delete();