[TIMOB-3191] iOS: hide scroll indicator in a tableView
GitHub Issue | n/a |
---|---|
Type | New Feature |
Priority | Trivial |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2011-04-15T03:39:08.000+0000 |
Affected Version/s | n/a |
Fix Version/s | Release 1.7.0, Sprint 2011-15 |
Components | iOS |
Labels | feature, ios, klist, release-1.7.0, reported-1.5.1, rplist |
Reporter | Jon Alter |
Assignee | Reggie Seagraves |
Created | 2011-04-15T03:39:07.000+0000 |
Updated | 2017-03-03T06:58:32.000+0000 |
Description
There is currently no way to hide the vertical scroll indicator in a tableView as you can with scrollView with showVerticalScrollIndicator:false
var win = Titanium.UI.createWindow({
backgroundColor:'#fff'
});
var data1 = [];
for(var v=0; v<=15; v++) {
var row = Ti.UI.createTableViewRow({
title:'Section 1 row '+v,
className:'sectionrow'
});
data1.push(row);
}
var tableview = Ti.UI.createTableView({
top: 0,
height: 500,
data:data1,
showVerticalScrollIndicator:false
});
win.add(tableview);
win.open();
Tested with 1.5.1 iOS SDK 4.2
Associated Helpdesk Ticket
http://developer.appcelerator.com/helpdesk/view/74571">http://developer.appcelerator.com/helpdesk/view/74571
(from [ff5a41b9cc1fbf4384a5830174f4ded13b2878ce]) [#3191 state:fixed-in-qa] Add support in table views for showVerticalScrollIndicator and add test in KS https://github.com/appcelerator/titanium_mobile/commit/ff5a41b9cc1fbf4384a5830174f4ded13b2878ce"> https://github.com/appcelerator/titanium_mobile/commit/ff5a41b9cc1f...
Should scrollIndicatorStyle be available for tableViews too?
ie: scrollIndicatorStyle:Ti.UI.iPhone.ScrollIndicatorStyle.WHITE
It seems to work for a scrollView, but not a tableView.
Closing ticket due to time passed and irrelevance.