2

Does anyone know of a Swing component that is spreadsheet like in nature, allows in-place editing and can be bound (in some fashion) to an array?

dansten
  • 33
  • 1
  • 5

1 Answers1

5

If you do not need anything fancy you might use a standard swing JTable (see e.g. here). It allows you to use in-place editing and you can define your own table model.

Howard
  • 38,639
  • 9
  • 64
  • 83