WinJS.UI.TapBehavior enumeration

0 out of 1 rated this helpful - Rate this topic

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

Syntax


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

Members

The TapBehavior enumeration has these members.

MemberValueDescription
directSelect"directSelect"

The item is selected and invoked.

toggleSelect"invoke"

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 supported client

Windows 8 [Windows Store apps only]

Minimum supported server

Windows Server 2012 [Windows Store apps only]

Namespace

WinJS.UI

Library

Ui.js

See also

ListView.TapBehavior
Quickstart: Adding a ListView

 

 

Build date: 12/5/2012

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.