AutoSuggestBox.onresultsuggestionchosen event
Raised when the user selects a suggested option.
Syntax
<div
data-win-control="WinJS.UI.AutoSuggestBox"
data-win-options="{onresultsuggestionchosen : handler}">
</div>
function handler(eventInfo) { /* Your code */ }
// addEventListener syntax
autoSuggestBox.addEventListener("resultsuggestionchosen", handler);
autoSuggestBox.removeEventListener("resultsuggestionchosen", handler);
Event information
Synchronous | No |
Bubbles | Yes |
Cancelable | Yes |
Event handler parameters
eventInfo
Type: CustomEvent**An object that contains information about the event. The detail property of this object contains the following sub-properties:
detail.tag
detail.keyModifiers
The virtual key used when submitting the query text. This property is set to a flags enum that has one or more of these possible values:
Virtual key modifier | Description |
---|---|
none |
Value: 0 No virtual key modifier. |
control |
Value: 1 The Ctrl (control) virtual key. |
menu |
Value: 2 The Menu virtual key. |
shift |
Value: 4 The Shift virtual key. |
windows |
Value: 8 The Windows virtual key. |
Requirements
Minimum WinJS version |
WinJS 4.0 |
Namespace |
WinJS.UI |