Questions tagged [ui.bootstrap]

Angular module with Bootstrap components written in pure AngularJS by the AngularUI Team

85 questions
0
votes
0 answers

cannot inject datepickerConfigProvider from ui.bootstrap

I'm trying to inject datepickerConfig inside the run phase, but angular says that it's unable to find the provider: Unknown provider: datepickerConfigProvider <- datepickerConfig. this is the code: (function () { angular.module('app',…
0
votes
0 answers

Angular Bootstrap Accordion Issue ui.bootstrap

I'm new to building in angularJS and I'm trying to implement a ui.boostrap.accordion as per the documentation found here: https://angular-ui.github.io/bootstrap/ However every time I start up my application It crashes. The whole browser freezes so I…
Javacadabra
  • 5,578
  • 15
  • 84
  • 152
0
votes
2 answers

Get a combined Date from ui.bootstrap date and time pickers

I'm trying to combine the Datepicker and Timepicker directives to get the date from the first and the time from the second in a combined Date object. I came across some examples that are not using these directives like this one Combining Date and…
0
votes
2 answers

ui.bootstrap uibModal in Angular is breaking my page

I'm currently going through the process of learning Angular and one of the tutorials i am following is using an older version of angular and as such the part which is teaching me about using ui.bootstrap is now out of date. I am using angular v…
kingtreelo
  • 251
  • 3
  • 15
0
votes
1 answer
0
votes
1 answer

ui.bootstrap with popover on angular doesn't work

I'm using angular 1.5.0-beta2 with bootstrap 3.3.5 and ui.bootstrap 0.14.3 I'm trying to create a popover on an li element. in the following code i use ng-repeat on an array, and using the directive popover-template to pinpoint the location of the…
ufk
  • 30,912
  • 70
  • 235
  • 386
0
votes
2 answers

How to custom ui.bootstrap for pagination with angular.element

I have this HTML generated by the pagination element:
0
votes
1 answer
0
votes
0 answers

angular bootstrap accordion collapses after data change

I'm using ui.bootstrap.accordion and experiencing an issue when data inside uib-accordion-group changes the group gets collapsed. I'm not sure why this is happening. Is there something specific i need to look out for ? thank you
0
votes
0 answers

Unable to use date-picker in ui.bootstrap. Am i defining my app and controller correctly?

trying to add a date picker to my app : defining an app like this : (app.js) var app = angular.module("scplApp",['ngRoute','ngAnimate','ui.bootstrap']); defining controller like this: (date-picker.js) …
Sachin Sharma
  • 1,446
  • 4
  • 18
  • 37
0
votes
1 answer

ui.bootstrap Dependency Injection

I am having trouble understanding why ui.bootstrap dependency injection is not working for me properly. When I inject the dependency, all the content in my single page all disappears. I am not receiving any sort of error in the console log. I feel…
Recon
  • 35
  • 9
0
votes
0 answers

ng-file-upload is not working in a bootstrap modal dialog

I am using the ng-file-upload (https://github.com/danialfarid/ng-file-upload) However, if I put the upload control into a directive and then display it in a modal, the upload does not work. I get this error: TypeError: this.Upload.upload is not a…
Bill Posters
  • 1,079
  • 2
  • 12
  • 16
0
votes
0 answers

angularjs ngSlide on $modal create only single instance on swipe

in angularjs i am using ngAside. its a plugin for angularjs based on ui.bootstrap $modal. In my code i am using ng-swipe such as ng-swipe-left and ng-swipe-right. the problem is that on swipe there are multiple sliding menus are opened. it works…
Siddharth
  • 545
  • 2
  • 7
  • 24
0
votes
2 answers

Configure a custom date to use as starting point in the datepicker

I'm trying to configure the datepicker from angular-ui.bootstrap to have a starting point date when user pops up the datepicker. I found out this line of code actually works. $scope.date = new Date(1980-12-12); It actually put the value at the…
Md Nazmoon Noor
  • 3,187
  • 1
  • 24
  • 30
0
votes
0 answers

Error: [$injector:modulerr] Failed to instantiate module app due to: [$injector:modulerr] Failed to instantiate module ui.bootstrap

var app = angular.module('app', ['controllers','ui.bootstrap']); and I have put ui 'ui.bootstrap' file in asset\js\dependencies but showing the above Error: [$injector:modulerr] Failed to instantiate module app due to: [$injector:modulerr]…