I tried to make keystroke Delete but when I select cell and press delete button it enter in the selected cell instead to delete the whole row . How I can disable Delete button to do nothing when cell is selected?
noo. I have delete button on my GUI but I want to make keyboard shortcut to this button. I want to make delete button on my keyboard to call delete method. But when I press it when cell is selected it enter in the cell instead to delete the entire row
To disable the automatic edition mode try this :
The
DefaultCellEditor
for manyJTable
cell types delegates to aJTextField
, which binds the Delete key to thedelete-next
action. To preempt the default behavior, you'll have to remove the existing binding fromDefaultCellEditor
, as shown in How to Use Key Bindings: How to Make and Remove Key Bindings. You can replace it with your own binding, as shown in this example; a typicalDefaultCellEditor
is shown here.