How do I view the model's "column" fields in actual columns. Is TableView the best way to do this?
Title's Text Item's Text
I've tried adding the TableViewSection tags with layout="horizontal" but I can't see the item or details (vertical or horizontal for that matter).
<Alloy>
<Collection src="myColecshun"/>
<Window class="container">
<TableView class="container" dataCollection="myColecshun">
<TableViewSection>
<TableViewRow title="{title}"/>
</TableViewSection>
<TableViewSection>
<TableViewRow item="{item}"/>
</TableViewSection>
<TableViewSection>
<TableViewRow details="{details}"/>
</TableViewSection>
</TableView>
</Window>
</Alloy>