Reputation: 113
HI, I am new to programing world. I want to know how to generate dynamic table using java swing component. I like to know how rows are generated dynamically where column remains fixed. Please anybody can help me out
Upvotes: 0
Views: 1177
Reputation: 13499
Everything you ever need to worry about is in your table model. Understand what an AbstractTableModel is, implement your own, and then you should be fine.
Upvotes: 0
Reputation: 1004
Have a look at the 'official' table tutorial: http://java.sun.com/docs/books/tutorial/uiswing/components/table.html
Upvotes: 1
Reputation: 94645
Take a look at http://www.javadocexamples.com/java_examples/javax/swing/table/
Upvotes: 0