最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - "swipe back" in ion-item after click on ion-option-button - Stack Overflow

programmeradmin0浏览0评论

in an Ionic project I made a ion-list ion-items and these ion-option-buttons:

<ion-list>
     <ion-item class="item " ng-repeat="exercise in exercises" on-double-tap="sendToChangeExercise">

            <p><h2>{{exercise.exerciseName}}</h2></p>

            <p ng-repeat="(parameter, value) in exercise.parameters">
             {{parameter}}: {{value}} <span ng-if="exercise.trainingData[parameter].length > 0 "><b><i>Eintrag im Trainingtagebuch: {{exercise.trainingData[parameter]}}</i></b></span>
            </p>
       <ion-option-button class="button button-calm"  ng-click="openModal(exercise.exerciseID)"> Info </ion-option-button>
       <ion-option-button class="button button-energized"  ng-click="openModal(exercise.exerciseID)"> Ändern </ion-option-button>
       
    <ion-option-button class="button button-balanced"  ng-click="didExercise(exercise.exerciseID)" ng-if="!exercise.done"> Done </ion-option-button>
      </ion-item>
</ion-list>

Let's say I swipe left on an item. Then the buttons appear. I click on a button and it does what it's supposed to do. But the ion-item still is in this "swipe left" state. You know what I mean? Now I have to swipe right so that the buttons disappear. Is there anything so that I could automatically let the buttons disappear at the end of the JS functions?

Thanks for help

in an Ionic project I made a ion-list ion-items and these ion-option-buttons:

<ion-list>
     <ion-item class="item " ng-repeat="exercise in exercises" on-double-tap="sendToChangeExercise">

            <p><h2>{{exercise.exerciseName}}</h2></p>

            <p ng-repeat="(parameter, value) in exercise.parameters">
             {{parameter}}: {{value}} <span ng-if="exercise.trainingData[parameter].length > 0 "><b><i>Eintrag im Trainingtagebuch: {{exercise.trainingData[parameter]}}</i></b></span>
            </p>
       <ion-option-button class="button button-calm"  ng-click="openModal(exercise.exerciseID)"> Info </ion-option-button>
       <ion-option-button class="button button-energized"  ng-click="openModal(exercise.exerciseID)"> Ändern </ion-option-button>
       
    <ion-option-button class="button button-balanced"  ng-click="didExercise(exercise.exerciseID)" ng-if="!exercise.done"> Done </ion-option-button>
      </ion-item>
</ion-list>

Let's say I swipe left on an item. Then the buttons appear. I click on a button and it does what it's supposed to do. But the ion-item still is in this "swipe left" state. You know what I mean? Now I have to swipe right so that the buttons disappear. Is there anything so that I could automatically let the buttons disappear at the end of the JS functions?

Thanks for help

Share Improve this question asked Oct 10, 2015 at 15:43 user2529173user2529173 1,9246 gold badges30 silver badges45 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 13

Or you could just close all option buttons at the end of your function:

$ionicListDelegate.closeOptionButtons();

You still have to inject $ionicListDelegate into your controller but you don't have to add any handlers.

You have to inject $ionicListDelegate into your controller and call its method closeOptionButtons().

Add to your ion-list attribue delegate-handle. Set its value to, for example, "exercise-list". Add this statement to your click handlers:

$ionicListDelegate.$getByHandle('exercise-list').closeOptionButtons();
发布评论

评论列表(0)

  1. 暂无评论