Could we please make a point to pass the calling listview that fired an event into all LV event args?
Would save doing this
function
onLeftSwipeClick(args) {
var
listView = frameModule.topmost().currentPage.getViewById(
"listView"
);
listView.notifySwipeToExecuteFinished();
}
Could be more elegant like
function
onLeftSwipeClick(args) {
args.listView.notifySwipeToExecuteFinished();
}
Which also lets me re-use events functions across listviews as the owner is passed in