Category Archives: Titanium

Things which goes around Titanium platform

[Titanium] Using TableView – open new window – passing data

With this simple tutorial i will show you how to load data from array, display content in TableView, and open a new window with some corresponding data(ex. product details).

Lets start with blank project and new window.

var win = Titanium.UI.createWindow({
 backgroundColor:'#999999'
});

Continue reading