data[i + direction] = temp;
}
updateFeatureRenderer(data);
- repaintTable();
+ table.repaint();
selectedRow = newRow;
}
}
.getData();
ensureOrder(data);
updateFeatureRenderer(data, false);
- repaintTable();
+ table.repaint();
}
} catch (Exception ex)
{
data[i][SHOW_COLUMN] = !(Boolean) data[i][SHOW_COLUMN];
}
updateFeatureRenderer(data, true);
- repaintTable();
+ table.repaint();
}
public void orderByAvWidth()
table.repaint();
}
- /**
- * Repaints the table using alternative code for Java and J2S
- */
- private void repaintTable()
- {
- table.repaint();
-// if (true)
-// return;
-// // BH 2018
-// // Here is a needed intervention
-// // because generally we don't "repaint"
-// // the table. We re-create the HTML divs
-// // that is associated with it. A better
-// // way to do this would be to fire a property change.
-// @SuppressWarnings("unused")
-// TableUI ui = table.getUI();
-// /**
-// * @j2sNative ui.repaintTable$();
-// */
-// {
-// }
- }
-
public void close()
{
try