I made a demo with some test data.
Click: “Load Images”
The problem is when I call a function and try to bind my data, the slidebox images overlap. Any help? Thanks
Note that the images I’m trying to load are .png
I made a demo with some test data.
Click: “Load Images”
The problem is when I call a function and try to bind my data, the slidebox images overlap. Any help? Thanks
Note that the images I’m trying to load are .png
Hey there first:
use correct ionic syntax, if you are using header-bar --> not need for ion-pane around all. the slidebox should be wrapped in ion-content.
The problem -> you are building an empty slideshow initially.
After you click the button -> slides are available, but the slidebox does not know that and needs to rerender.
Two ways to this in your example:
http://play.ionic.io/app/b356684964a9
I would prefer solution 2
Yep that worked, my problem was that I called $ionicSlideBoxDelegate.update(); immediately after calling the data from my backend.
Now the dots appear but they still overlap,
Thanks
Edit: your first method worked! thanks again.