Skip to content

Instantly share code, notes, and snippets.

@hansdrop
hansdrop / gift.js
Created November 10, 2020 17:25 — forked from sr3d/gift.js
Ti.include('../../lib/active_record.js');
Ti.include('../../lib/utils.js');
Ti.include('../../lib/models.js');
var guest = Model.Guest.find(win.guest.id),
gift = Model.Gift.find({ first: true, where: {guest_id: guest.id} }),
sections = [],
currentSection = 0,
yesNoBtn, amountInput, giftDescription,
tableView = Ti.UI.createTableView({ style: Titanium.UI.iPhone.TableViewStyle.GROUPED });