Skip to content

Instantly share code, notes, and snippets.

@benlau
Created January 1, 2016 09:03
Show Gist options
  • Save benlau/a1a361144df66291d2ac to your computer and use it in GitHub Desktop.
Save benlau/a1a361144df66291d2ac to your computer and use it in GitHub Desktop.
ListView {
Dialog {
id: alertDialog
property int removeItemId;
onAccepted: {
// remove item
}
}
delegate: YourItem {
onRemoveClicked: {
alertDialog.removeItemId = id;
alertDialog.open();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment