ListView Item Click not working

The Button handles the click, so the widget is never informed that it was clicked, so the listview does not know about it.
Either don’t use a button, or make your own on clicked solution by having a dispatcher in the entry widget, that is called when the button is clicked. Bind to it during the Item Initialized/generated event.

2 Likes