@huyhungkun wrote:
I have a ListView. I add event listener as below. In web, it work fine, in mobile, I see it doesn't dispatch any event and function scrollEvent below never run, anyone help me, thank all.
ccui.ScrollView.prototype.addEventListener.call(this.listView, this.scrollEvent, this); scrollEvent: function (list, eventNum) { switch (eventNum) { case ccui.ScrollView.EVENT_SCROLLING: case ccui.ScrollView.EVENT_BOUNCE_TOP: case ccui.ScrollView.EVENT_BOUNCE_BOTTOM: case ccui.ScrollView.EVENT_BOUNCE_LEFT: case ccui.ScrollView.EVENT_BOUNCE_RIGHT: this.calculateVisible(); break; } },
Posts: 1
Participants: 1