Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

currently the JTable cell is selected on first click, and on the second one it is edited.

Is it possible to directly edit it on the first click?

share|improve this question

2 Answers

up vote 9 down vote accepted

In the DefaultCellEditor api there is a method named setClickCountToStart

    DefaultCellEditor singleclick = new DefaultCellEditor(new JTextField());
    singleclick.setClickCountToStart(1);

    //set the editor as default on every column
    for (int i = 0; i < table.getColumnCount(); i++) {
        table.setDefaultEditor(table.getColumnClass(i), singleclick);
    } 
share|improve this answer
Hi, this dosent seem to work, it works with javax.swing.table.TableColumn col = jTable1.getColumnModel().getColumn(1); DefaultCellEditor singleclick = new DefaultCellEditor(new JTextField()); singleclick.setClickCountToStart(1); col.setCellEditor (singleclick); This works for only 1 column, is it possible for the entire table at once? – Akash Sep 12 '11 at 12:18
for(int i=0; i<table.getColumnModel().getColumnCount();i++){ TableColumn col = table.getColumnModel().getColumn(i); col.setCellEditor (singleclick); } but thats not the beautiful way – Neifen Sep 12 '11 at 12:39
the edited version works for me ;) – Neifen Sep 12 '11 at 12:59

UsesetClickCountToStart(1) on the cell editor.

share|improve this answer
3  
narrow race, you won :-) – kleopatra Sep 12 '11 at 11:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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