Передача данных в uib-accordion-group
У меня есть следующий код:
<div uib-accordion-group class="panel-default" is-open="isOpen" template-url="group-template.html">
<uib-accordion-heading>
Custom Title
</uib-accordion-heading>
</div>
В group-template.html
У меня есть этот код:
<h4 class="panel-title" uib-accordion-transclude="heading">
<span uib-accordion-header>{{heading}}</span>
<div ng-switch="varCondition">
<i class="a" ng-switch-when="1"/>
<i class="b" ng-switch-when="2"/>
</div>
</h4>
Как я могу передать varCondition
переменная как template-url
параметр?
1 ответ
Внутри html-шаблона попробуйте изменить
ng-switch="varCondition"
В
ng-switch="$parent.varCondition"