Re: JTables and dynamically adding data
- From: RedGrittyBrick <RedGrittyBrick@xxxxxxxxxxxxx>
- Date: Sat, 26 Apr 2008 22:35:39 +0100
michael.miceli88@xxxxxxxxx wrote:
On Apr 26, 1:46 pm, RedGrittyBrick <RedGrittyBr...@xxxxxxxxxxxxx>
wrote:
michael.micel...@xxxxxxxxx wrote:Hey,Have you tried incrementing the value returned by your getColumnCount(),
I have a JTable that I want to add a new column to every time someone
clicks a button. I have been reading about extending the
AbstractTableModel, but I don't how this allows you to add a new
column. The examples online show what happens when a user edits a
table, but I don't want that. I want it add when the user presses a
button outside of the table. Some advice would be appreciated.
making sure getValueAt() now returns the appropriate values then calling
fireTableStructureChanged()?
--
RGB
No, but I will give this a try, and hopefully get back to you by the
end of the day.
Thanks
I couldn't resist trying it.
-------------------------------- 8< ------------------------------
public class TableColumnAdder implements ActionListener {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new TableColumnAdder();
}
});
}
private MultiplyModel model = new MultiplyModel();
TableColumnAdder() {
JButton button = new JButton("Add Column");
button.addActionListener(this);
JTable table = new JTable(model);
Box box = new Box(BoxLayout.PAGE_AXIS);
box.add(button);
box.add(new JScrollPane(table));
JFrame f = new JFrame("TableColumnAdder");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.add(box);
f.pack();
f.setLocationRelativeTo(null);
f.setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
model.addColumn();
}
class MultiplyModel extends AbstractTableModel {
private int columns = 1;
private static final int ROWS = 12;
@Override
public int getColumnCount() {
return columns;
}
@Override
public int getRowCount() {
return ROWS;
}
@Override
public Object getValueAt(int row, int column) {
return row * column;
}
public void addColumn() {
columns++;
fireTableStructureChanged();
}
}
}
-------------------------------- 8< ------------------------------
--
RGB
.
- References:
- JTables and dynamically adding data
- From: michael . miceli88
- Re: JTables and dynamically adding data
- From: RedGrittyBrick
- Re: JTables and dynamically adding data
- From: michael . miceli88
- JTables and dynamically adding data
- Prev by Date: Re: Segv Fault Handler for Java?
- Next by Date: Re: menu component for touch screen
- Previous by thread: Re: JTables and dynamically adding data
- Next by thread: Re: JTables and dynamically adding data
- Index(es):
Relevant Pages
|