WinJS.UI.TapBehavior enumeration

Specifies how items in a ListView respond to the tap interaction.

Syntax

var WinJS.UI.TapBehavior = {
  directSelect : "directSelect", 
  toggleSelect : "toggleSelect", 
  invokeOnly : "invokeOnly", 
  none : "none"
}

Members

The TapBehavior enumeration has these members.

Member Value Description
directSelect "directSelect"

The item is selected and invoked.

toggleSelect "toggleSelect"

The item is selected if was not already selected, and its deselected if it was already selected.

invokeOnly "invokeOnly"

The item is invoked but not selected.

none "none"

Nothing happens.

Remarks

Do not set a ListView control's TapBehavior property to "directSelect" when its SelectionMode is set to "none".

Requirements

Minimum WinJS version

WinJS 3.0

Namespace

WinJS.UI

See also

ListView.TapBehavior

Quickstart: Adding a ListView