aspose file tools
The moose likes Swing / AWT / SWT and the fly likes jtable mouse click behaviour Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "jtable mouse click behaviour" Watch "jtable mouse click behaviour" New topic
Author

jtable mouse click behaviour

miguel lisboa
Ranch Hand

Joined: Feb 08, 2004
Posts: 1281
i'm experimenting and at a given point i'v this code:

i notice output appears twice: on mouse down once, and again on mouse up
should this act this way?
TiA


java amateur
Craig Wood
Ranch Hand

Joined: Jan 14, 2004
Posts: 1535
should this act this way?
Yes.
A ListSelectionListener is most interested in tracking all changes in list
selections: de-selection and selection. If you want to wait until all the
flurry of activity subsides before asking what the new selection is you
can use the ListSelectionEvent method getValueIsAdjusting.

[ September 14, 2006: Message edited by: Craig Wood ]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: jtable mouse click behaviour
 
Similar Threads
JTable refresh problems
ListSelectionListener and double clicks
Problem with JTable scrolling
JTable row selection
Jtable Event Handling