Forums Register Login

JList

+Pie Number of slices to send: Send
Hi,all,
I am using a JList and add a ListSelectionListener.But every time I click the item in the JList once,it fires two ListSelectionEvent because the valueChanged() is invoked twice.Anybody know how to fix this?
Thank you in advance and May you have a merry Christmas!
Frances
+Pie Number of slices to send: Send
Well I experienced a similar problem, so I removed the ListSelectionListener from my JList, instead, I added a JButton to get what I needed, in the actionPerformed() I called the getSelectedIndex() of the JList, to get the value. I don't know if this will help, because I don't know exactly what you are trying to do. but here is a code snipett to help.
JList jl = new JList();
c.add(jl);
JButton but = new JButton("submit");
but.addActionListener
etc...
// skip to action performed method.
public void actionPerformed(actionEvent e{
variable = JList.getSelectedIndex();
// do stuff
Hope it is of some help
+Pie Number of slices to send: Send
Hi, Pat Patal,
I just got back from out-of-town.Sorry I am late and thank you for your help! I am working on it now.

Frances
+Pie Number of slices to send: Send
The 2 callbacks are the result of the mouse interaction.
1 callback for mouse down
1 callback for mouse up
If you are only interested in the mouse up callback then your handler can just check the event flag isAdjusting:
true for mouse down, false for mouse up
public void valueChanged(ListSelectionEvent evt)
{
if( !ev.isAdjusting() )
{
// perform some work here.
}
}
The above solution has a problem with the 1.2 version of Swing if your list allows multiple selections (CTRL+click). The mouse up for this case doesn't generate therefore your routine will never perform any work. But since you had the multiple callback problem your list is probably SINGLE_SELECTION.
Manfred.
+Pie Number of slices to send: Send
Hi,Manfred,
I finally set a boolean flag to control it. But your ev.getValueIsAdjusting() is a better,neat idea. I tried and succeeded. Thank you very much!
Frances
I am not young enough to know everything. - Oscar Wilde This tiny ad thinks it knows more than Oscar:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com


reply
reply
This thread has been viewed 1384 times.
Similar Threads
Count items in JList
how to hide popup ?
Regarding JList and DefaultListModel.
JList + Vector
How to add a String array to JList?
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 09:34:42.