Git Product home page Git Product logo

Comments (9)

CodeTectonics avatar CodeTectonics commented on July 30, 2024 1

I had a similar issue and found that using an ng-if to remove the ion-slides element until the data is loaded into the scope worked for me.

from ionic-v1.

jgw96 avatar jgw96 commented on July 30, 2024

From @PhilHuot on February 3, 2016 20:13

I'm having the same issue. There is a bug when you use ng-repeat in ion-slides if the loop option is set to true. Any help would be appreciated.

Tested on ionic 1.2.4

Just a note: I tested it using the deprecated ion-slide-box and its working fine.

from ionic-v1.

jgw96 avatar jgw96 commented on July 30, 2024

From @wittayaatt on March 4, 2016 7:2

I have found the workaround. I am not so sure if this part of code is actually about but I noticed they remove ng-repeat of looped slide here. So, I add the code to remove ion-slide-page children's ng-repeat.

var newNodeChild = newNode.find('ion-item');
newNodeChild.removeAttr('ng-repeat');

Full ionic.bundle.js start at line 11006

for (i = 0; i < appendSlides.length; i++) {
  newNode = angular.element(appendSlides[i]).clone().addClass(s.params.slideDuplicateClass);
  newNode.removeAttr('ng-transclude');
  newNode.removeAttr('ng-repeat');

  var newNodeChild = newNode.find('ion-item');
  newNodeChild.removeAttr('ng-repeat');

  scope = angular.element(appendSlides[i]).scope();
  newNode = $compile(newNode)(scope);
  angular.element(s.wrapper).append(newNode);
    //s.wrapper.append($(appendSlides[i].cloneNode(true)).addClass(s.params.slideDuplicateClass));
}
for (i = prependSlides.length - 1; i >= 0; i--) {
    //s.wrapper.prepend($(prependSlides[i].cloneNode(true)).addClass(s.params.slideDuplicateClass));

  newNode = angular.element(prependSlides[i]).clone().addClass(s.params.slideDuplicateClass);
  newNode.removeAttr('ng-transclude');
  newNode.removeAttr('ng-repeat');

  var newNodeChild = newNode.find('ion-item');
  newNodeChild.removeAttr('ng-repeat');

  scope = angular.element(prependSlides[i]).scope();
  newNode = $compile(newNode)(scope);
  angular.element(s.wrapper).prepend(newNode);
}

Hope this help.

from ionic-v1.

jgw96 avatar jgw96 commented on July 30, 2024

From @Aknilam on March 6, 2016 0:53

+1

I faced similar problem, I modified your Code Pen http://codepen.io/elaval/pen/XXpoLy. Here is delayed change of slides data and auto change of slides.

@wittayaatt unfortunately your code didn't help in this case

from ionic-v1.

jgw96 avatar jgw96 commented on July 30, 2024

From @ruslan-fidesio on August 10, 2016 17:0

Stumbled upon the same problem, here is an example : https://codepen.io/ruslan-fidesio/pen/qNLqYk using the nightly build.

Does anyone have a workarround ?

from ionic-v1.

jgw96 avatar jgw96 commented on July 30, 2024

From @TzaddikO on October 12, 2016 14:52

@ruslan-fidesio I don't think that's the same issue..

However this is still broken in 1.3.1

Here is an updated modification of elaval's Code Pen: http://codepen.io/toltman/pen/mAKEOx

from ionic-v1.

jgw96 avatar jgw96 commented on July 30, 2024

From @rgarciape on January 10, 2017 11:41

Hi @elaval ,

Have you found any workaround?

I´m testing ion-slide component with the option loop set and I suppose my Issue is more or less the same.

The index that I obtain when I load the component is loaded returnning activeIndex = 2, but only running on devices. However, when I launch the app via ionic serve it works fine.

Here are my ionic info:

Cordova CLI: 6.4.0
Ionic Framework Version: 2.0.0-beta.11
Ionic CLI Version: 2.1.18
Ionic App Lib Version: 2.1.7
ios-deploy version: Not installed
ios-sim version: Not installed
OS: Windows 7
Node Version: v7.3.0
Xcode version: Not installed

Thanks in advance¡

from ionic-v1.

twinssbc avatar twinssbc commented on July 30, 2024

I'm having same issue.
There will be two duplicate slides generated when loop mode is set to true.
In the duplicate slide, somehow the ngRepeat is repeated multiple times.

<div class="list">
            <!-- ngRepeat: item in page.items --><!-- ngRepeat: item in page.items --><ion-item ng-repeat="item in page.items" class="item ng-binding" style="">
              G
            </ion-item><!-- end ngRepeat: item in page.items --><ion-item ng-repeat="item in page.items" class="item ng-binding">
              G
            </ion-item><!-- end ngRepeat: item in page.items --><ion-item ng-repeat="item in page.items" class="item ng-binding">
              G
            </ion-item><!-- end ngRepeat: item in page.items --><!-- end ngRepeat: item in page.items --><!-- ngRepeat: item in page.items --><ion-item ng-repeat="item in page.items" class="item ng-binding">
              H
            </ion-item><!-- end ngRepeat: item in page.items --><ion-item ng-repeat="item in page.items" class="item ng-binding">
              H
            </ion-item><!-- end ngRepeat: item in page.items --><ion-item ng-repeat="item in page.items" class="item ng-binding">
              H
            </ion-item><!-- end ngRepeat: item in page.items --><!-- end ngRepeat: item in page.items --><!-- ngRepeat: item in page.items --><ion-item ng-repeat="item in page.items" class="item ng-binding">
              I
            </ion-item><!-- end ngRepeat: item in page.items --><ion-item ng-repeat="item in page.items" class="item ng-binding">
              I
            </ion-item><!-- end ngRepeat: item in page.items --><ion-item ng-repeat="item in page.items" class="item ng-binding">
              I
            </ion-item><!-- end ngRepeat: item in page.items --><!-- end ngRepeat: item in page.items -->
          </div>

from ionic-v1.

divinzer avatar divinzer commented on July 30, 2024

same issue
this works only web not device.

below options is helpful but not perfect
options.loop = false

from ionic-v1.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.