[TIMOB-1224] createCoverFlowView's images array does not accept remote Images.
GitHub Issue | n/a |
---|---|
Type | New Feature |
Priority | Medium |
Status | Closed |
Resolution | Invalid |
Resolution Date | 2011-04-15T02:47:02.000+0000 |
Affected Version/s | n/a |
Fix Version/s | Backlog |
Components | iOS |
Labels | coverflowview, feature, ios, iphone, remote, url |
Reporter | Ralf Pfeiffer |
Assignee | Reggie Seagraves |
Created | 2011-04-15T02:47:01.000+0000 |
Updated | 2017-03-02T21:08:13.000+0000 |
Description
The following does not work, it gives an error.
Titanium.UI.setBackgroundColor('#000');
var win = Titanium.UI.createWindow({
title:'Tab 1',
backgroundColor:'#fff'
});
var imagesCoverflow = [];
imagesCoverflow.push('http://www.mnit.ac.in/literary09/1.png')">http://www.mnit.ac.in/literary09/1.png');
imagesCoverflow.push('http://www.moviemeads.com/videos/2.png')">http://www.moviemeads.com/videos/2.png');
var coverflowView = Titanium.UI.createCoverFlowView({
images:imagesCoverflow,
backgroundColor:'transparent'
});
win.add(coverflowView);
win.open();
Right now images for the cover flow need to be local. Changing this ticket to be a feature request.
This is a duplicate of #587.
Closed as invalid.