Last active
August 29, 2015 14:05
-
-
Save abergs/40734bfb4a6aa5492026 to your computer and use it in GitHub Desktop.
TableViewComponent
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// version 0.0.1 of TableViewcomponent API | |
<TableView> | |
<Columns> | |
<Column format="%s kg" /> | |
<Column format="%s" /> | |
</Columns> | |
<Rows> | |
{Items} | |
</Rows | |
</TableView | |
// version 0.0.2 of TableViewcomponent API | |
<TableView enableSearch=false> | |
<Columns> | |
<Column format="%s kg" itemPropName="weight" /> | |
<Column format="%s" itemPropName="fullName" /> | |
</Columns> | |
<Rows> | |
{Items} | |
</Rows | |
</TableView |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment