Questions tagged [ui.bootstrap]

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

85 questions
1
vote
1 answer

Send html content with variables to template from controller AngularJS

After being searching for this issue for a long time, I decided to do my first question in StackOverflow. I hope anyone can help me. I'm doing a ui.bootstrap.carousel with different slides. The initial structure is the following :
Lu Chinke
  • 622
  • 2
  • 8
  • 27
1
vote
1 answer

ui.bootstrap breaks my unit tests with unexpected results error?

In the controller I've used ui.bootstrap to implement pagination on my page, after installing ui.bootstrap I got following error message on my unit tests Here is my Test file: 'use strict'; describe('LoginCtrl', function () { …
mr. Holiday
  • 1,780
  • 2
  • 19
  • 37
1
vote
1 answer

Remove cellClass value from ui.grid

I'm using cellClass in ui.grid to add the class of tomato. cellClass: function(grid, row, col) { if (grid.getCellValue(row,col) === 'confirmed') { return 'green'; } else { return ''; …
fauverism
  • 1,970
  • 3
  • 33
  • 59
0
votes
0 answers

where is the style code for the ui time picker?

I am working with html5 for a web project , I want to add ui-time picker(from the ui.bootstrap library https://angular-ui.github.io/bootstrap/versioned-docs/1.2.5/ ) to my page , the problem is that I am already using bootstrap version. there fore…
0
votes
0 answers

ui.bootstrap modal does not load modal content, it only shows backdrop

The issue is for the fist time only other times it works fine. When i tried to open modal as below.Some times the modal content which tied to templateUrl is not rendered, it only shows backdrop with out modal content.I am using angular-ui-bootstrap…
mohammed
  • 1
  • 2
0
votes
2 answers

AngularJS Images Not Displaying on Screen

Images are not displaying on screen for slideshow carousel. In the console under elements, I clearly see the path: but they are not showing on the screen. Could someone please help with this? I have the images in subfolders and when i click a…
Ginger22
  • 147
  • 2
  • 12
0
votes
1 answer

Angularjs uib-typeahead object in array

I am trying to implement typeahead by searching through an array of objects. How do i do so? I only know how to search through an array but not an array of object Array of object HTML:
HangulSR
  • 259
  • 2
  • 10
0
votes
1 answer

Alpha channel and opacity in a Bootstrap theme

I am trying to port an accordion control to a ui.bootstrap accordion. Most elements that I am dealing with in the ui.bootstrap version are panel classed elements in vanilla Bootstrap. I have created (using the theme customizer) css to set the…
CodeWarrior
  • 7,388
  • 7
  • 51
  • 78
0
votes
1 answer

Uncaught ReferenceError: require is not defined at typeahead.js:2

I am getting following Error as I used Ui.bootstrap's typeahead library Uncaught ReferenceError: require is not defined at typeahead.js:2 Tried googling for this but nothing helpful found,Any help will be appreciated Thanks in advance
0
votes
0 answers

ui.bootstrap modal rendering entire page blank

When I inject ui.bootstrap as a module in my controller, it renders the entire html page blank. Has this happened to anyone or does anyone know why this would occur? Thank you! (function() { angular .module("FreshmanApp",…
mloomis
  • 199
  • 1
  • 2
  • 11
0
votes
0 answers

I am not able to give active class to pageNumber,I am using Bootstrap and AngularJS,uib-pagination

i have tried pagination using uib-pagination,everything seems to work fine, but the only thing is that i am not able to attach the page number with active class.
0
votes
1 answer

$uibModalProvider is unknown

I am working with angular-ui-bootstrap. I get this error: Unknown provider: $uibModalProvider <- $uibModal <- WebAppController Information 1- Have used ui.bootstrap as a dependency in my app correctly. angular.module('webApp', ['ui.router',…
mahan
  • 12,366
  • 5
  • 48
  • 83
0
votes
0 answers

Blank page after injecting ui.bootstrap without errors

After injecting ui.bootstrap into my module the application is loading a blank page without throwing any errors. If i remove the injection that page loads fine. angular.module('app',['ui.bootstrap']) I have all the necessary includes
0
votes
1 answer

Timezone is being added to time from mysql DB

I am using angularjs on the frontend and a mysql DB. I am using ui.bootstrap timepicker to select a time. The issue that I am having is that the user will pick a time and it will look like this: Thu Apr 27 2017 09:00:00 GMT-0600 (Mountain Daylight…
maus
  • 80
  • 7
0
votes
1 answer

How to pass arguments and retrieve results from Angular UI Bootstrap Modal using Components

I have simple case where I defined modal as component and open that modal using uiModal.open. However when I want to pass any custom data to that modal using "resolve" on open method and arguments on controller constructor the data is not passed.…