I would like to be able to handle the DoubleClck on the items of my ListView.
I could see that the seelctionModel does not manage the Event.
So, I decided to create my own Listener and add it directly to the ListView instanciated object.
Here is the code :
public class OneSample extends Dialog implements Listener<ListViewEvent> {
.....
view.addListener(Events.OnDoubleClick, this) ;
I don't know if it is clever but can't find an other way.
I am picking up the selectdItem like this:
view1.getSelectionModel().getSelectedItems().get(0)