Skip to content

Instantly share code, notes, and snippets.

View ryun's full-sized avatar
🤘

Ryun Shofner ryun

🤘
View GitHub Profile
@ryun
ryun / app.js
Created November 6, 2011 07:47
Titanium Mobile js module: Horizontal and Vertical Scrolling Tables
// Require the table modules
var scrollableTableView = require('scrollableTableView').scrollableTableView;
var scrollableTable = require('scrollableTable').scrollableTable;
// Container View (so we can fit multiple table on one page)
var tblView = new scrollableTableView();
// Create Some tables
var tbl = new scrollableTable();
var tbl2 = new scrollableTable();