I posted this on the JFC/Swing board as well, but wanted to see if you folks on the "Advanced" board could lend some expertise. Any help is GREATLY appreciated.
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
kevinallenbennett@yahoo.com