[TIMOB-1500] iOS: UI.TableViewRow - opacity does not work
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2017-07-21T16:23:46.000+0000 |
Affected Version/s | Release 2.1.0, Release 1.8.1, Release 3.0.0 |
Fix Version/s | n/a |
Components | iOS |
Labels | api |
Reporter | Sindre Sorhus |
Assignee | Ingo Muschenetz |
Created | 2011-04-15T02:54:27.000+0000 |
Updated | 2017-07-21T16:23:46.000+0000 |
Description
Problem
Opacity has no effect on TableViewRow.Test case
var win = Ti.UI.createWindow();
var table = Ti.UI.createTableView({
backgroundColor: 'red',
data: [
{
title: 'opacity 0.5',
opacity: 0.5,
backgroundColor: '#fff'
},
{
title: 'opacity 1.0',
backgroundColor: '#fff'
}
]
});
win.add(table);
win.open();
Discussions
Q&A: [tableviewrow opacity does not work](http://developer.appcelerator.com/question/27021/tableviewrow-opacity-does-not-work) See duplicate TC-273 for a more recent ticket.Comments
- Sindre Sorhus 2012-01-02 Any updates?
- Stephen Tramer 2012-01-03 This bug requires a valid test case before we can address it.
- Sindre Sorhus 2012-01-04
Test case
Added test case. Please reopen.var win = Ti.UI.createWindow(); var table = Ti.UI.createTableView({ backgroundColor: 'red', data: [ { title: 'opacity 0.5', opacity: 0.5, backgroundColor: '#fff' }, { title: 'opacity 1.0', backgroundColor: '#fff' } ] }); win.add(table); win.open();
- Sindre Sorhus 2012-07-08 Still an issue using Titanium SDK 2.1.0 on iOS 5.1 simulator.
- Junaid Younus 2012-08-15 Issue still reproducible on TiSDK 2.2.0v20120814103312 using the iOS simulator.
- Thierry Godfroid 2012-11-27 Same in 2.1.3GA. Any update on when we can expect a fix ?
- Armindo Da Silva 2013-09-18 unbelievable that this bug exists since about 3 years and still unresolved...
- Ingo Muschenetz 2013-09-18 [~ads] We have asked developers to move to the ListView as it is a more performant version of TableView, and we are only doing critical fixes to TableView. Is there a reason you cannot make that switch?
- Armindo Da Silva 2013-09-18 too much code involved and ListView is pretty new so maybe not stable enough for this.
- Dan Wilson 2014-12-10 At the very least, update the documentation. I just spent 2 hours trying to figure out why this isn't working. If the functionality isn't there and there is no plan to fix/implement it, remove it or add a note.
- Lee Morris 2017-07-21 This seems to have been fixed in TIDOC-2061. Any problems, please re-open.