What is the best way to put a footer row into a JTable? Does anyone have any sample code to do this?
The only approach I\'ve thought of so far is to put a special ro
I guess the best approach (but certainly not the easiest) would be to take a look at the source code for the JTableHeader Component, see how it works and then create your own JTableFooter Component. You can re-use the JTableHeader UI Delegate for the footer, I think the main differences would be in the getHeaderRect() method, where it determines the bounds of a given column header tile.