Skip to content

Instantly share code, notes, and snippets.

@scottsampson
Created April 5, 2011 16:41
Show Gist options
  • Save scottsampson/6548c7fa9543d81f2b90 to your computer and use it in GitHub Desktop.
Save scottsampson/6548c7fa9543d81f2b90 to your computer and use it in GitHub Desktop.
appcelerator window open onclick
tableview.addEventListener('click', function(e) {
var w = Ti.UI.createWindow();
w.game_id = e.rowData.game_id;
w.title = 'Game';
w.url = 'game.js';
w.previouswin = Titanium.UI.currentWindow;
Titanium.UI.currentWindow.tab.open(w);
w = null;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment