Details
-
Type:
Bug
-
Status: Closed
-
Priority:
High
-
Resolution: Won't Do
-
Affects Version/s: Release 8.1.0
-
Fix Version/s: None
-
Component/s: Windows
-
Labels:None
-
Story Points:8
-
Sprint:2019 Sprint 23, 2019 Sprint 25
Description
TableView constantly fires scrollend event during dragging scroll bar with PC mouse.
var win = Ti.UI.createWindow();
|
|
var tableData = [];
|
|
for (var i = 0; i < 40; i++) {
|
tableData.push({title: 'Apple ' + i});
|
}
|
|
var table = Ti.UI.createTableView({
|
data: tableData
|
});
|
|
table.addEventListener('scrollend', function() {
|
Ti.API.info('scrollend');
|
});
|
|
win.add(table);
|
win.open();
|
Expected: scrollend happens only when you finish scrolling bar with mouse drag.
Attachments
Issue Links
- relates to
-
TIMOB-27303 Windows: Issue with TableView scrollend event (Windows 10 uwp apps)
-
- Closed
-