Hi I have added a JTextArea to JTable column as below
DefaultTableModel model=new DefaultTableModel ();
Object rowdata={"",new JTextArea(),""};
model.addRow(rowData);
when i did the above it did not added text area to column. Instaed it added a string which is obtained by toString method. How do i add a component to the JTable column. Thanks in advance.