• 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
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

JTable problem

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a JTable that is the central part of a reservations program. It lists dates across the column header (each individual cell corresponds to a date), and items that can be reserved down the row header. Items can be reserved for one or more days.
This is what I am currently doing: The column header cells are populated with a custom date class that corresponds to each individual date, the row header is populated with a single-column table of item objects. When someone selects a range of cells (dates) for a specific object and clicks a "reserve" button I create a single reservation object and add it to each of the selected cells (dates).
My current problem is this: For a reservation that is more than one day long, each cell can be selected individually. I would like to have it so that any mouse click any of the cells (dates) that make up a single reservation results in all of the cells being selected. Ideally the cells would all become one cell, i.e. a seven day long reservation would result in the seven individual date cells becoming one single cell that is seven days long. I've tried this but haven't had too much luck. Any suggestions are welcome, from simple tips to suggestions of a better architecture for the entire table. Thanks.
Kevin
[email protected]
 
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For starters, this is the page I always refer to for JTable Tips&Tricks:
http://www2.gol.com/users/tame/swing/examples/JTableExamples1.html
Lots of examples...
Steffen
 
Try 100 things. 2 will work out, but you will never know in advance which 2. This tiny ad might be one:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic