9.0 Released! → Native ESM runtimes 🚀, Vite support ⚡️, multi-window apps and more...
Read Announcement

Defined in: ui/list-view/index.d.ts:230

Event data containing information for the index and the view associated to a list view item.

Extends

Properties

android

ts
android: any;

Defined in: ui/list-view/index.d.ts:254

Gets the native android widget that represents the user interface where the view is hosted. Valid only when running on Android OS.


eventName

ts
eventName: string;

Defined in: data/observable/index.ts

The name of the event.

Inherited from

EventData.eventName


index

ts
index: number;

Defined in: ui/list-view/index.d.ts:234

The index of the item, for which the event is raised.


ios

ts
ios: any;

Defined in: ui/list-view/index.d.ts:249

Gets the native iOS view that represents the user interface where the view is hosted. Valid only when running on iOS.


object

ts
object: Observable;

Defined in: data/observable/index.ts

The Observable instance that has raised the event.

Inherited from

EventData.object


section?

ts
optional section?: number;

Defined in: ui/list-view/index.d.ts:239

When data is sectioned (any platform that supports sections), this is the section index for the item.


view

ts
view: View;

Defined in: ui/list-view/index.d.ts:244

The view that is associated to the item, for which the event is raised.

Previous
IOSView