Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I found out if you editing a TableViewer cell without hit the Enter or Tab key. Then the new cell value won't take effect. For example, a table cell value is "abc" and you change it to "xyz". Then when you read that table cell value, it still "abc". You MUST hit the Enter or Tab key, then you will get that table cell value as "xyz".

How can I force that table cell value as "xyz" WITHOUT hit the Enter or Tab key?

Thanks very much in advance!

share|improve this question

2 Answers

i suggest you check the tableviewer api. if it was a standard JTable you simply use this:

JTable table = new JTable(...);
table.putClientProperty("terminateEditOnFocusLost", Boolean.TRUE);
share|improve this answer
Losing focus means hitting tab or clicking elsewhere...if this is still not acceptable (I would wonder why) then you need to put a timeout on the editor so that after a certain time without typing the edit is taken into account... – Julien Bidault Jan 5 '12 at 10:47
Thanks for your answer, but is there any solution for TableViewer? – sonvx Jan 6 '12 at 2:58
@Julien Bidault: Can you let me know how to set timeout for celleditor of tableviewer? – sonvx Jan 6 '12 at 3:21
I haven't done Swing in ages, but from my memory : the fact you focus out of the cell, or the fact you press enter trigger en event. The fact your type in the cell trigger an event as well. What you can do is register a listener to the "typing" event, that will launch a timer. If a new key is pressed, the timer is reset to its original value. Once the time reaches 0, you manually trigger an event that validates the content of your cell (there are a lot of event, pick the proper one). The trick will be the management of the timer (only one timer, and handle other type of events) – Julien Bidault Jan 6 '12 at 10:12
not an answer a) TableViewer != JTable b) doesn't help anyway for JTable, as live (on key type) commit is not supported – kleopatra Jan 7 '12 at 15:03
show 1 more comment

Temporally, i make a losing focus by set focus from current view to another view in RCP :). It's not official solution but effect.

share|improve this answer

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.