вотк кусок jsp файла, где страничка динамически строится
<div class="container" id="app-journal">
<div class="content">
<div class="content-body journal" ng-controller="MainController">
<div>
<div data-calcHeight class="row _tight form-group">
<div class="col col-per-3">
<ui-select data-select class="menu-select _block" ng-model="station" theme="select2"
on-select="onStationChange($item) | filter: {stationShortName: $select.search}">
<ui-select-match placeholder="Выберите станцию">
<div class="icon icon-{{$select.selected.stationGroupId == 15 ? 'lightning' : 'radiation'}}">
</div>
{{$select.selected.stationShortName}}
</ui-select-match>
<ui-select-choices repeat="item in stations">
<div class="icon icon-{{item.stationGroupId == 15 ? 'lightning' : 'radiation'}}">
</div>
{{item.stationShortName}}
</ui-select-choices>
</ui-select>
</div>