Hello!
Wanted to know - what would you suggest can be a best way to implement that?
Basically, what I need is to place a code which would allow a user to make a double-click on a row in the JTable (double-click part shown below), which is located on JPanel A, and this double-clicking will redirect user to JPanel B, which would contain someData (like - additional details of whatever was on that JTable row).
private void TableMouseClicked(java.awt.event.MouseEvent evt) {
if(evt.getClickCount() == 2){
System.out.println("Double click");
}
}
Thanks for your help!