posted 20 years ago
I'm having a little problem, and I'm not sure if it is a scrolling issue, or a JTable issue, but I'll explain what I'm trying to do, and hopefully somebody will understand.
I have a JTable with nothing in it(will call this JTable1). The user selects a row from a different table(JTable2) and clicks the "Add" button. This grows my JTable1 by one row. After I do several adds, my JTable1 gets a scrollbar associated with it. The current behavior is that once I have this scrollbar and I add another row, my view never changes from the first few rows(the ones visible prior to my scrollbar popping up). I don't see the last row added unless I manually go over and scroll down.
What I want to happen is that once the table is large enough for the scrollbar, I want to set the current visible row to be the last one that I added. Basically I want the table to automatically scroll to the last row added.
Any assistance is greatly appreciated!