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).
Are there any updates on this?
any update on this ?
Most helpful comment
Are there any updates on this?