ビューを初めてロードしたときはコントローラー リスナーが機能しますが、ビューに戻った後は 2 回目は機能しません。ビューで autoDestroy: false を設定しようとしましたが、問題は解決しません。
ポップ後にコントローラー イベント リスナーを再開するには、何を変更する必要がありますか?
onNestedlistItemTap1: function(nestedlist, list, index, target, record, e, options) {
if(record.isLeaf()) {
console.log(this.getMainWrapper().getActiveView().id); <-- id of the view; after pop is blank
this.getNavContainer().animateActiveItem(record.data.depth, {
type: 'flip'
}); <-- doesn't work after pop
}
},