forked from patternfly/angular-patternfly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimple-sort.html
More file actions
22 lines (22 loc) · 855 Bytes
/
Copy pathsimple-sort.html
File metadata and controls
22 lines (22 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="simple-sort">
<form>
<div class="form-group">
<div class="dropdown btn-group">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
{{config.currentField.title}}
<span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li ng-repeat="item in config.fields" ng-class="{'selected': item === config.currentField}">
<a class="sort-field" role="menuitem" tabindex="-1" ng-click="selectField(item)">
{{item.title}}
</a>
</li>
</ul>
</div>
<button class="btn btn-link" type="button">
<span class="sort-direction" ng-class="getSortIconClass()" ng-click="changeDirection()"></span>
</button>
</div>
</form>
</div>