vote up 0 vote down star

Hi everyone!! I created JTable with JTextPane as cell editor.I want to stop cell editing and want to do some processing if I pressed enter key in JTextPane .And I also want to use single line in JTextPane. So, I add keylistener in JTextPane and call stopCellediting method. But it does not work, focus is in JTextPane and if I click other cell, the selected row and the selected column is not changed.So,please help me to use single line in JTextPane and to stop cell editing if I pressed enter like the default cell editor.Thanks a lot!!

flag
It would help us to see your code, so we can see where you're going wrong. – Jonathan Feinberg Oct 17 at 13:08
Why do you need to use a JTextPane for single line entry? Why not use a JTextField? – Russ Hayward Oct 18 at 8:56

1 Answer

vote up 0 vote down

sounds like you want a custom cell editor that has a keylistener on it that listens for the "enter" key and then does the processing you want.

link|flag

Your Answer

Get an OpenID
or

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