Re: multiselect ListBox getting selected items

2010-03-17 Thread Thomas Broyer
On Mar 16, 8:24 pm, Dave wrote: > I'm attempting to get multiple selected items from a ListBox > > My setup code is: > > final ListBox listBox = new ListBox(true); > listBox.addItem("Item 1", "1"); > listBox.addItem("Item 2", "2"); > listBox.addItem("Item 3", "3"); > > In the onClick event of a

multiselect ListBox getting selected items

2010-03-16 Thread Dave
I'm attempting to get multiple selected items from a ListBox My setup code is: final ListBox listBox = new ListBox(true); listBox.addItem("Item 1", "1"); listBox.addItem("Item 2", "2"); listBox.addItem("Item 3", "3"); In the onClick event of a button on my panel I want to get the selected items.