Nativescript-ui-feedback: RadListView deselectItemAt is not triggering itemDeselected event (iOS only)

Created on 21 Nov 2017  路  2Comments  路  Source: ProgressNS/nativescript-ui-feedback

The method deselectItemAt for RadListView is not triggering the itemDeselected event on iOS. The same works as expected on Android.

Steps to reproduce:

export function onItemSelected(args) {
    console.log("onItemSelected"); // works as expected
}

export function onItemDeselected(args) {
    console.log("onItemDeselected"); // wont trigger on iOS when listView.deselectItemAt(Number(txtDeselectItemIndex.text)); is called!!
}

and in the XML file

<lv:RadListView items="{{ dataItems }}" row="1" id="listView" multipleSelection="true" selectionBehavior="Press" itemSelected="onItemSelected" itemDeselected="onItemDeselected">

Result: the itemDeselected event will not be triggered via the programmatic method deselectItemAt on iOS (will work as expected on Android).

backlog bug listview ios medium

Most helpful comment

Are there any updates on this?

All 2 comments

Are there any updates on this?

any update on this ?

Was this page helpful?
0 / 5 - 0 ratings