Created
September 2, 2015 12:41
-
-
Save rolaveric/c8e8e69d9fc76e59177a to your computer and use it in GitHub Desktop.
Template which uses the pageRange filter
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
<ul> | |
<li ng-repeat="index in ctrl.viewValue('titlesById.length') | pageRange:ctrl.page:ctrl.pageSize"> | |
<dl> | |
<dt>Title</dt> | |
<dd>{{:: ctrl.viewValue('titlesById[' + index + '].title')}}</dd> | |
<dt>Description</dt> | |
<dd>{{:: ctrl.viewValue('titlesById[' + index + '].description')}}</dd> | |
</dl> | |
</li> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment