62f1eb8c833a2ecc89ccca22ef57c1da3f2c4564
[dlux.git] / modules / yangman-resources / src / main / resources / yangman / views / rightpanel / form / operational / list-filtered-data-top.tpl.html
1 <!-- previous item button -->
2 <button ng-click="shiftDisplayPrev()"
3         ng-show="showPrevButton()"
4         tooltip="{{ 'LIST_PREV_ITEM' | translate }}"
5         class="yangButton iconPrev"></button>
6
7 <!-- item list -->
8 <div class="listButtonWrapper"
9      ng-repeat="offset in displayOffsets"
10      ng-if="currentDisplayIndex + offset > -1 && node.filteredListData.length > currentDisplayIndex + offset">
11
12     <button  class="btn btn-like-tab {{ (currentDisplayIndex + offset === node.actElemIndex ? 'btn-selected':'') }}"
13              ng-click="node.changeActElementData(currentDisplayIndex + offset,false)"
14              tooltip="{{getListName(offset, false).tooltip}}">
15         {{yangForm.getNodeName(node.localeLabel, node.label)}}&nbsp;{{ getListName(offset, true).name }}
16     </button>
17 </div>
18
19 <!-- next item button -->
20 <button ng-click="shiftDisplayNext('filteredListData')"
21         ng-show="showNextButton('filteredListData')"
22         tooltip="{{ 'LIST_NEXT_ITEM' | translate }}"
23         class="yangButton iconNext"></button>