SearchBox.onresultsuggestionchosen event

[SearchBox is no longer available for use as of Windows 10. Instead, use AutoSuggestBox. ]

Raised when the user selects a suggested option for the search.

Syntax

<div 
    data-win-control="WinJS.UI.SearchBox" 
    data-win-options="{onresultsuggestionchosen : handler}">
</div>
function handler(eventInfo) { /* Your code */ }
 
// addEventListener syntax
searchBox.addEventListener("resultsuggestionchosen", handler);
searchBox.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.

  - detail.storageFile

Requirements

Minimum WinJS version

WinJS 3.0

Namespace

WinJS.UI

See also

SearchBox