Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-3191] iOS: hide scroll indicator in a tableView

GitHub Issuen/a
TypeNew Feature
PriorityTrivial
StatusClosed
ResolutionFixed
Resolution Date2011-04-15T03:39:08.000+0000
Affected Version/sn/a
Fix Version/sRelease 1.7.0, Sprint 2011-15
ComponentsiOS
Labelsfeature, ios, klist, release-1.7.0, reported-1.5.1, rplist
ReporterJon Alter
AssigneeReggie Seagraves
Created2011-04-15T03:39:07.000+0000
Updated2017-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

Comments

  1. Jeff Haynie 2011-04-15

    (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...

  2. kosso 2011-04-15

    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.

  3. Lee Morris 2017-03-03

    Closing ticket due to time passed and irrelevance.

JSON Source