placing JTable cell in edit mode using space bar key
On my table, I have set:
table.putClientProperty("JTable.autoStartsEdit", Boolean.FALSE);
The user uses F2 to edit cells. This works great.
But I'd also like the ability to place an cell in edit mode when the user presses the space bar key. How can I achieve this.
thanks

