Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-3609] iOS: TableViewRow's backgroundGradient shows gaps when scrolled quickly

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionWon't Do
Resolution Date2020-01-09T19:02:09.000+0000
Affected Version/sRelease 1.6.2, Release 2.0.1, Release 3.1.0, Release 3.2.0
Fix Version/sn/a
ComponentsiOS
Labelsreprod, supportTeam
ReporterPedro Enrique
AssigneeEric Merriman
Created2011-04-18T10:41:53.000+0000
Updated2020-01-09T19:02:09.000+0000

Description

The title is self explanatory. Here is a test code:
var win = Ti.UI.createWindow();
var table = Ti.UI.createTableView({
	backgroundColor: '#F00'
});

for(var i = 0; i < 50; i++) {
	var row = Ti.UI.createTableViewRow({
		backgroundGradient: {
			type:'linear',
			colors:['#FFF','#CCC'],
			startPoint:{x:0,y:'0%'},
			endPoint:{x:0,y:'100%'}
		},
		height: Math.ceil(70*(1+Math.random()))
	});
	
	table.appendRow(row);
}

win.add(table);

win.open();
There is a HelpDesk ticket that reported this: http://support.appcelerator.com/tickets/AUT-44619-223/homepage

Comments

  1. Varun Joshi 2012-05-16

    Issue still exists.
  2. Junaid Younus 2012-05-18

    ^Reproducible with 2.0.1GA2
  3. Shameer Jan 2013-05-08

    Issue reproduces Tested with Titanium Studio, build: 3.0.1.201212181159 Titanium SDK version: 3.1.0 iOS iPhone Simulator: iOS SDK version: 6.0
  4. Lee Morris 2017-06-09

    I have been able to reproduce this issue with the following environment; iPhone 7 (10.2) MacOS 10.11.6 (15G31) Studio 4.9.0.201705302345 Ti SDK 6.1.1.v20170609091155 Appc NPM 4.2.9 Appc CLI 6.2.1 Ti CLI 5.0.13 Alloy 1.9.11 Arrow 2.0.0 Xcode 8.2 (8C38) Node v4.8.2 Java 1.8.0_131
  5. Alan Hutton 2020-01-09

    It has been decided that this issue should be closed as “Won’t do.” This issue is out of date with our current supported SDK release (7.5.2.GA as of the date of closure), and out of date with mobile OS versions. Updating, or creating code may not reproduce the issue reported, or be a valid test case. If community members feel that the issue is still valid, please create a new ticket. Please reference this closed ticket number, include SDK used, comments, and code that demonstrates/reproduces the issue.

JSON Source