I have JTable and couple of Cells as rows ( only 1 column ) that have Textboxes On Double Clicking a particular Cell , user can edit the cell But i have a separate Edit button part of application for editing the cells since there is no "startCellEditing" method on getting getCellEditor (only stopCellEditing is there )

if i call editCellAt(row,column) method (on clicking the edit button ) its removing the existing content and user has to enter the entire content again .

how do i get this behavior ? Inshort , instead of user double clicking the cell to edit , he clicks on a edit button , how do achieve same behavior ?

link|improve this question

please clarify what's Swing JComponetns is Textboxes (Swt, Gwt, DesktopAplication) – mKorbel Jul 1 '11 at 10:29
do you have textbox in original table as editor or as renderer? – Penkov Vladimir Jul 1 '11 at 10:29
JTextBox as CellEditor – sashank Jul 1 '11 at 10:52
just to be clear: dblclick starts cell editing and the current value is shown in JTextBox, and invoking editCellAt() clears current content (JTextBox contains no text)? – Penkov Vladimir Jul 1 '11 at 11:06
yes you are right – sashank Jul 1 '11 at 11:25
show 2 more comments
feedback

1 Answer

up vote 0 down vote accepted

this code do not clears cell content on button click

import javax.swing.*;
import javax.swing.table.DefaultTableModel;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class Test extends JFrame {

    public Test() {

        DefaultTableModel tableModel = new DefaultTableModel();
        tableModel.setRowCount(2);
        tableModel.setColumnCount(2);
        tableModel.setValueAt("Foo", 0, 0);
        final JTable t = new JTable(tableModel);

        JPanel comp = new JPanel(new BorderLayout());
        getContentPane().add(comp);

        comp.add(t, BorderLayout.CENTER);
        JButton edit = new JButton("Edit");
        edit.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                t.editCellAt(0, 0);
            }
        });
        comp.add(edit, BorderLayout.SOUTH);

        pack();
        setVisible(true);

    }

    public static void main(String[] args) {
        new Test();
    }
}
link|improve this answer
Double Click wont clear cell content , even i agree, but if call editCellAt on some other button click , it clears – sashank Jul 1 '11 at 11:25
i suppose you JAVA is different to mine. sun jre 1.6. Nothing is cleared. – Penkov Vladimir Jul 1 '11 at 11:36
Always construct the GUI on the event dispatch thread. – trashgod Jul 1 '11 at 16:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.