All Questions
33 questions
0votes
1answer
1kviews
Angular ng-repeat for Bootstrap Carousel
I have an issue where my carousel shows the correct amount of uib-slides based on the list (3 items per page so if there are 7 total items there are 3 pages 3/3/1) but instead of the proper 3/3/1 it ...
1vote
2answers
844views
ui bootstrap tpl version 2.5.0 not supporting carousel
I have struggling with following issue since 2 days. I need to implement modal popup, where I got the "Unknown provider: $uibModalProvider" error. So I upgraded the version of ui-bootstrap-tpls.min.js ...
0votes
1answer
86views
Copying the UI-Bootstrap code does not work? How do I use UI-Bootstrap?
I am trying to use components from the http://angular-ui.github.io/bootstrap/ page and am basically copying the code exacctly just to get the framework. But it does not work seem to work, am I ...
2votes
0answers
1kviews
Dynamic Bootstrap Carousel 3 items as Active
I am trying to create a dynamic carousel in angular js and would like to have 3 items in each slide. the issue is that the first 3 items should be wrapped around the "active" class and all the next ...
5votes
0answers
2kviews
angular ui-carousel with thumbnails
I have the following html code that renders an angular ui-bootstrp carousel: <div class="slider" uib-carousel active="active" interval="myInterval" > <div uib-slide ng-repeat="slide in ...
0votes
1answer
604views
Positioning ui-angular carousel controls
I am creating a carousel that displays images with some meta data. On md and lg screens I want the meta data to appear to the right, and on smaller screens I want it below the image, which is working ...
0votes
1answer
163views
Argument 'CarouselDemoCtrl' is not a function, got undefined
indexCtrl.js var app = angular.module('app', ['ui.router', 'ui.bootstrap', 'ngAnimate']) .config(['$urlRouterProvider', '$stateProvider', function($urlRouterProvider, $stateProvider) { $scope....
0votes
1answer
1kviews
UI Bootstrap control uib-carousel bind to next event
I am using the angular-bootstrap's (ui.bootstrap) uib-carousel component with custom template to change the style, text, and functionality of the back and next buttons. I have to perform other actions ...
1vote
0answers
191views
angularjs directive wait for uib carousel to load
I have a directive that loads a uib carousel. In the directive link function, I want to wait in the postlink function until the carousel has finished loading, and then add some event listeners and ...
6votes
3answers
5kviews
UI Bootstrap control uib-carousel with custom buttons
I am trying to control the carousel through buttons, rather than the controls above the carousel (I will be hiding the chevron icons). I inspected the chevron icon and found this in the source: <...
1vote
0answers
283views
Angular UI Bootstrap - Carousel directive - Animate CSS Provider unknown
I'm trying to use the carousel directive, and am getting two errors. First error: Unknown provider: $animateCssProvider <- $animateCss <- .item-animation Second error: TypeError: $animate.on ...
1vote
1answer
1kviews
Angular UI Bootstrap Carousel and Tabs collision when they are on same page
I am using angular UI Bootstrap for an angularjs project. I have a page with Carousel and Tabs (both are on the same page). The problem is that the Tabs are switching with respect to the Carousel ...
1vote
1answer
843views
AngularJS bootstrap's carousel doesn't work
SOLVED: Here it is codepen link with correct code: Codepen my angular bootstrap carousel shows images one on the other statically without "sliding", anyone know why? This is my setup: HOME.HTML: &...
0votes
1answer
185views
Angular UI Bootstrap Carousel Pager stops working after I visit other tabs and return back
I have angular UI bootstrap's carousel directive implemented on my site. Everything is working fine and suddenly I noticed that whenever I browse to other sites, leaving my site open in one tab and ...
1vote
2answers
949views
Weird sliding behaviour in Angular UI bootstrap carousel
Im working on a project where I want to use a carousel to display some different content. I will not create the slides dynamically using an ng-repeat, this is because I have to move some of the ...