i have seen some example of doing it but i still can't understand and not able to implement it.

What i want to do is on cell change (focus), the next selected cell will have all the text selected, ready for user to totally change it..

Any ideas on how to do it ?

//update// somehow i managed to come out with the following class but

implement this
tblLayers.setDefaultEditor(String.class, new Classes.CellEditor());

yields nothing, the "Not supported yet." is NOT thrown ..

how should I solve this problem ?

import java.awt.Component;
import java.util.EventObject;
import javax.swing.JTable;
import javax.swing.JTextField;
import javax.swing.SwingUtilities;
import javax.swing.event.CellEditorListener;
import javax.swing.table.TableCellEditor;


public class CellEditor extends JTextField implements TableCellEditor {


public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) {
    //        final JTextField ec = (JTextField) editorComponent;
    //
    //        ec.setText((String) value);
    //
    //        // selectAll, so that whatever the user types replaces what we just put there
    //        ec.selectAll();
    //
    //        SwingUtilities.invokeLater(new Runnable() {
    //
    //            public void run() {
    //                // make the component take the keyboard focus, so the backspace key works
    //                ec.requestFocus();
    //
    //                SwingUtilities.invokeLater(new Runnable() {
    //
    //                    public void run() {
    //                        // at this point the user has typed something into the cell and we
    //                        // want the caret to be AFTER that character, so that the next one
    //                        // comes in on the RHS
    //                        ec.setCaretPosition(ec.getText().length());
    //                    }
    //                });
    //            }
    //        });
    //        return editorComponent;


    throw new UnsupportedOperationException("Not supported yet.");
}

public Object getCellEditorValue() {
    throw new UnsupportedOperationException("Not supported yet.");
}

public boolean isCellEditable(EventObject anEvent) {
    throw new UnsupportedOperationException("Not supported yet.");
}

public boolean shouldSelectCell(EventObject anEvent) {
    throw new UnsupportedOperationException("Not supported yet.");
}

public boolean stopCellEditing() {
    throw new UnsupportedOperationException("Not supported yet.");
}

public void cancelCellEditing() {
    throw new UnsupportedOperationException("Not supported yet.");
}

public void addCellEditorListener(CellEditorListener l) {
    throw new UnsupportedOperationException("Not supported yet.");
}

public void removeCellEditorListener(CellEditorListener l) {
    throw new UnsupportedOperationException("Not supported yet.");
}
}
link|improve this question

71% accept rate
feedback

3 Answers

up vote 2 down vote accepted

regarding editorComponent, where do I initialize this variable?

The variable editorComponent is a field of DefaultCellEditor.

Instead of

class CellEditor extends JTextField implements TableCellEditor

consider

class CellEditor extends DefaultCellEditor

Then you can do something like this:

@Override
public Component getTableCellEditorComponent(JTable table,
        Object value, boolean isSelected, int row, int column) {
    JTextField ec = (JTextField) editorComponent;
    if (isSelected) {
        ec.selectAll();
    }
    return editorComponent;
}
link|improve this answer
feedback

What i want to do is on cell change (focus), the next selected cell will have all the text selected, ready for user to totally change it..

The solution depends on your exact requiement. A JTable has a renderer and an editor.

A render generally just shows the text in the cell. If you want the text replaced when you start typing then you need to do two things:

a) change the renderer to display the text in a "selected" state so the user knows that typing a character will remove the existing text b) change the editor to select all the text when it is invoked

This approach is relatively difficult because you will need a custom renderer for each different data type in your table (ie. String, Integer).

Or another approach is to automatically place each cell in editing mode when it gets focus and therefore you only need to change the editor to select the text.

This approach is easy as you can just do:

JTable table = new JTable(data, columnNames)
{
    //  Place cell in edit mode when it 'gains focus'

    public void changeSelection(
        int row, int column, boolean toggle, boolean extend)
    {
        super.changeSelection(row, column, toggle, extend);

        if (editCellAt(row, column))
        {
            Component editor = getEditorComponent();
            editor.requestFocusInWindow();
            ((JTextComponent)editor).selectAll();
        }
    }
};
link|improve this answer
Can this easy approach be added to a NetBeans table? My project is basically complete, with the exception that the default NetBeans Palette JTable sucks. But the project is already way over budget so I'd rather not redesign parts of it from scratch. I also saw your fine Table Select All Editor example here but wouldn't be sure how to apply it to a NetBeans Palette JTable. – jacknad May 7 at 13:39
feedback

This should help https://forums.oracle.com/forums/thread.jspa?threadID=2317349

link|improve this answer
regarding editorComponent, where do i initialize this variable ? – Melvin Dec 13 '11 at 10:36
feedback

Your Answer

 
or
required, but never shown

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