How can i set JTable in JDialog

1.5k Views Asked by At

I have a JPanel where i need to open other window (JFrame, JDialog, JOptionPane) that has JTable on it. After manual filling of JTable need to get its data back to JFrame.

How can this be made?

3

There are 3 best solutions below

0
On BEST ANSWER

Basically, you have to implement a method in your JDialog, where JTable is located, like this (return Object[][] is just an example, you can return any type of Collection) :

public Object[][] showDialogWithTable() {
   //do some needed actions
   setVisible(true);

   //when user closes JDialog with a JTable collect data from the table
   Object[][] data = collectData();

   return data;
}
1
On

You can use a model class (one that extends AbstractTableModel for example). Your JPanel creates an instance of the model that is initially empty. You can pass the instance to the constructor of the other window (the one that extends JFrame, JDialog, ..) and pass it to the JTable from there.

The edits of the JTable are reflected in the model and your main window still has access to the data through the instance of the model.

0
On

The view in your JFrame that needs to see updates should add itself to your table's model as a TableModelListener. The TableModelEvent will identify what changed.