Hi again,
I’m doing my second effort in starting Vaadin today :). I found out, that I can listen for table row selections using:
Table productSelectionTable = productSelectionComposite.getProductSelectionTable();
productSelectionTable.addListener(addressInput);
where my addressInput implements an ItemClickListener. This works well for noticing a table row being clicked. But I can not find out how to accomplish the following:
- When I change table row focus using the keyboard, no click event (of course its not clicked is fired.
- When I do a productSelectionTable.select(something) the event is also not fired.
Unfortunately I do not find a “FocusListener” or something similar. How can I track any kind of selection, no matter if clicked, double clicked, programatically set or navigated to by keyboard?
Best regards,
Bergtroll