Skip to Main Content

Java SE (Java Platform, Standard Edition)

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Highlight JTable rows on rollover

843804Jun 29 2005 — edited Jun 29 2005
Hi,
I am trying to highlight JTable rows on mouse rollover.. Currently what I do is
 
table.addMouseMotionListener (new MouseMotionListener() {
public void mouseMoved (MouseEvent me) {
   int row = table.getRowAtPoint(me.getx(),me.gety());
   if (row >=0)
         changeSelection (row, 0, false, false);
}
public void mouseDragged(MouseEvent me) {}
}
 
As obvious from the "changeSelection" this actually changes the selection. The required behavior should be that rows get highlighted on rollover, but that doesn't change the actual selection..
From what I understand, I could use cell renderers, but not sure how exactly..
Any suggestions welcome!

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Jul 27 2005
Added on Jun 29 2005
3 comments
5,101 views