0

我有一个离子弹出框,我需要做的是,当我从弹出框中选择滚动后列表中最后一个的任何选项时,选择后弹出框关闭,但是当我再次重新打开该弹出框时,它再次将我带到滚动的顶部,当我再次打开它时,我想滚动到弹出框中的选定项目?

这是我的html:

<script id="templates/ListViewCreator.html" type="text/ng-template">
     <ion-popover-view class="filterpopoverMargins">
      <ion-header-bar  class="">
                <h1 class="title" style="color: black;">Select Views</h1>
    </ion-header-bar>
            <ion-content>

                <div class="list selectfilterListClass" ng-repeat="item in filterColumn" style="background-color:darkgrey!important;" ng-click="itemCheckedUnCheckedFilterhandler(item)">

                    <label class="item item-radio wrapping-list ">
                        <input type="radio" name="group">

                        <div class="item-content" style="">
                            {{item.label}}
                        </div>
                        <i class="radio-icon ion-checkmark"></i>
                    </label>

                </div>
            </ion-content>
             <ion-footer-bar>
                <button ng-click="defaultSetting()" class="button bar-balanced defaultbtnClass">Default</button>
              </ion-footer-bar>
        </ion-popover-view>
    </script>

请帮助我得到答案

4

0 回答 0