• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Highlight text of cell in JTable

 
Ranch Hand
Posts: 61
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a JTable whose cell elements are Double. The default behavior of the table is that when you click the cell and start type, the new text starts from the end of previous text. For example, if one cell has a value of "0.001", when I click this cell and type "2", the cell becomes "0.0012".
What I want is that when I click a new cell and type a number, the new value just over-writes the old value, i.e., "2" overwrites "0.001" so that new value on the cell becomes "2".
Would anyone give a suggestion?
Thanks!
Sam
 
reply
    Bookmark Topic Watch Topic
  • New Topic