Created
February 4, 2014 10:30
-
-
Save wedgybo/8801261 to your computer and use it in GitHub Desktop.
AngularJS UITableView example
This file contains hidden or 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
<div mlz-ui-table-view="items" mlz-ui-table-view-row-height="100" mlz-ui-table-view-buffer="20"> | |
<div class="mlz-ui-table-view-wrapper"> | |
<div ng-repeat="item in tableView.buffer.items track by item.$$position"> | |
<dt ng-bind="item.name"></dt> | |
<dd ng-bind="item.details"></dd> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment