alloy
Version:
TiDev Titanium MVC Framework
18 lines (14 loc) • 533 B
text/xml
<Alloy>
<Collection src="myModel" id="myModelId" instance="true"/>
<Tab title="local/<Require>">
<Window id="window" title="local/<Require>">
<!-- use a local reference attached to the controller -->
<TableView id="table" dataCollection="$.myModelId" onClick="removeItem">
<!-- use a <Require> for our repeated TableViewRow -->
<Require src="row"/>
</TableView>
<!-- let's use a simple button or android -->
<Button class="addButton" onClick="addItem" platform="android"/>
</Window>
</Tab>
</Alloy>