Results 1 to 2 of 2
- 11-02-2009, 04:49 AM #1
Member
- Join Date
- Nov 2009
- Posts
- 1
- Rep Power
- 0
How to put a JButton in JTable thrid column?
can any one plzz help to put a JButton in JTable column
public class TABLEE extends tablee1 {
public static void main(String args[]) {
JFrame frame = new JFrame();
int i=0;
DBConnection db=new DBConnection();
Statement stmt=null;
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOS E);
Object row[][] = { };
JButton btn= new JButton();
//how to add this btn button in the thrid column
Object col[] = { "Reference Paper Name", "Author" ,"Link"};
DefaultTableModel table1=new DefaultTableModel(row,col);
JTable table = new JTable(table1);
JScrollPane scrollPane = new JScrollPane(table);
frame.add(scrollPane, BorderLayout.CENTER);
frame.setSize(1000, 750);
frame.setVisible(true);
try
{
String query="select * from reference where base_id='bp5'";
stmt=db.getConnection().createStatement();
PreparedStatement ps=db.getConnection().prepareStatement(query);
ResultSet rs=ps.executeQuery();
while(rs.next())
{
//how to add this btn button in the thrid column
table1.insertRow(i,new Object[]{rs.getString(2),rs.getString(3),//Button add here });
i++;
}
}
-
Welcome to the Java-Forums. Have you gone through the Sun Swing tutorials on JTables? There is a section that describes using a JButton as a custom cell editor for a JTable: Sun JTable Tutorial. Also, when posting code, please use code tags (please see my signature below).
Much luck!
Similar Threads
-
[SOLVED] JSpinner in JTable column
By nehaa in forum AWT / SwingReplies: 10Last Post: 05-11-2009, 01:34 PM -
Jtable Column Selection Problem
By REVANSIDDHA in forum Advanced JavaReplies: 0Last Post: 03-31-2009, 07:53 AM -
JCheckBox in JTable column
By hind in forum New To JavaReplies: 8Last Post: 01-04-2009, 07:40 PM -
tooltips for JTable column headers
By fossildoc in forum AWT / SwingReplies: 2Last Post: 12-18-2008, 11:42 AM -
How to sort column in JTable
By johnt in forum AWT / SwingReplies: 3Last Post: 06-14-2008, 05:48 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks