-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccordiantable.html
More file actions
21 lines (19 loc) · 967 Bytes
/
accordiantable.html
File metadata and controls
21 lines (19 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default" ng-repeat="tr in tabledata track by $index">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a href="javascript:;" data-target="#collapseOne{{$index}}" role="button" data-toggle="collapse" data-parent="#accordion" aria-expanded="false" aria-controls="collapseOne">
{{fetchFirstValue(tr)[0]}} - {{fetchFirstValue(tr)[1]}}
</a>
</h4>
</div>
<div id="collapseOne{{$index}}" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
<dl class="col-lg-6 col-md-6 col-sm-6 col-xs-6" ng-repeat="(key, value) in tr track by $index">
<dt class="text-capitalize">{{key}}</dt>
<dd class="text-capitalize" ng-bind-html="value" compile></dd>
</dl>
</div>
</div>
</div>
</div>