How to call an event when the user "finally" selects an item in a list?

Posted by herzmeister der welten on Stack Overflow See other posts from Stack Overflow or by herzmeister der welten
Published on 2010-04-20T17:11:48Z Indexed on 2010/04/20 17:13 UTC
Read the original article Hit count: 250

When a user clicks once on an item in a Grid or a ListBox, that item is usually selected, hence most UI frameworks have a onSelected event or the like for that.

However, how can we generally call the next step when a user "finally" selects an item by e.g. double clicking an entry? You know when some popup might appear in the context of the selected item and the user can do further stuff.

Strangely enough, I think I have never seen a word for that in any UI framework.

onPicked, onAccepted, onChosen, onFinallySelected, onResult? All kinda awkward or too special. Any other ideas?

© Stack Overflow or respective owner

Related posts about terminology

Related posts about language-agnostic