NativeScript 9.1 Released → V8 14.9, Vite 8 HMR, built for rapid agentic visual iteration
Dig in

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

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:266

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:246

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


ios ​

ts
ios: any;

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

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:251

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:256

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

Previous
IOSView