Extend « JTable « Java Swing Q&A





1. Extended JTable clipping problem    stackoverflow.com

Hi I'm using set of classes I found on internet that extends JTable capabilities making me able to merge or split some cells. Mentioned capability works ok but I have two ...

2. Problems with extending JTables    bytes.com

Only add your new column to your DefaultTableModel given its name. The column will be intially empty but you can fill it yourself later. See the API documentation for the DefaultTableModel ...

3. JTable with extended component    coderanch.com

4. Extending JTable    coderanch.com

There was no explicit need for it to be a JTable, and you are right these can be done in other ways, as you mentioned. Actually I've done more or less the same, by implementing a getPanel() method that returns the panel for it to be included in the appropiated container. I was merely trying to see if replacing an existing ...