Skip to content

Instantly share code, notes, and snippets.

View grantges's full-sized avatar

Bert Grantges grantges

  • Austin, Tx - United States
View GitHub Profile
@grantges
grantges / gist:3035526
Created July 2, 2012 20:31
Creating a tableview in appcelerator with multiple views per row
/*
* Create Your Window
*/
var win = Ti.UI.createWindow({
title: 'MainWin',
backgroundColor: '#a6a6a6'
});
/*
@grantges
grantges / gist:1216716
Created September 14, 2011 14:29
HTTPClient example with Authorization
// this sets the background color of the master UIView (when there are no windows/tab groups on it)
Titanium.UI.setBackgroundColor('#000');
var win = Ti.UI.createWindow({
title: "MainWindow",
layout: "vertical"
});
var username = Ti.UI.createTextField({
left: 10,