Skip to content

Instantly share code, notes, and snippets.

View brantwills's full-sized avatar
🎉

Brant Wills brantwills

🎉
View GitHub Profile
<paging
class="small"
page="currentPage"
page-size="pageSize"
total="total"
show-prev-next="{{showPrevNext}}"
show-first-last="{{showFirstLast}}"
text-next-class="{{textNextClass}}"
text-prev-class="{{textPrevClass}}"
text-first-class="{{textFirstClass}}"
@brantwills
brantwills / AngularPaging-TextTitle.html
Last active December 23, 2015 15:59
Angular-Paging: Text and Title Example
<paging
page="currentPage"
page-size="pageSize"
total="total"
text-first="{{textFirst}}"
text-last="{{textLast}}"
text-next="{{textNext}}"
text-prev="{{textPrev}}"
text-title-page="Page {page} Hover Over"
text-title-first="{{textTitleFirst}}"
@brantwills
brantwills / AngularPaging-CSS.html
Created December 21, 2015 22:18
Angular-Paging: CSS Class Name Example
<paging
class="small"
page="currentPage"
page-size="pageSize"
total="total"
ul-class="{{ulClass}}"
active-class="{{activeClass}}"
disabled-class="{{disabledClass}}"
</paging>
@brantwills
brantwills / AngularPaging-BoolFlags.html
Last active June 4, 2016 17:57
Angular-Paging: Boolean Flag Setting Example
<paging
page="currentPage"
page-size="pageSize"
total="total"
disabled="{{isDisabled}}"
scroll-top="{{scrollTop}}"
hide-if-empty="{{hideIfEmpty}}"
show-prev-next="{{showPrevNext}}"
show-first-last="{{showFirstLast}}">
</paging>
@brantwills
brantwills / AngularPaging-OnClickHref.html
Last active December 21, 2015 22:16
Angular-Paging: OnClick and Href Example
<paging
page="currentPage"
page-size="pageSize"
total="total"
pg-href="{{pgHref}}"
paging-action="DoCtrlPagingAct('Paging Clicked', page, pageSize, total)">
</paging>
@brantwills
brantwills / AngularPaging-Basic.html
Last active May 17, 2016 12:28
Angular-Paging: Basic Example
<div paging
page="currentPage"
page-size="pageSize"
total="total">
</div>