All Questions
66 questions
16
votes
11
answers
36k
views
Create Hoverable popover using angular-ui-bootstrap
I have the following code for creating a popover in my template file:
<span class="icon-globe visibility"
id="visibilityFor{{post.metaData.assetId}}"
popover="{{post....
2
votes
2
answers
3k
views
Angular spinner is not appearing
I am using urish/angular-spinner but it is not working when I try to use it in controller through $scope.startSpin() and $scope.stopSpin();
Please find my plunker at Plunker. Here the spinner is not ...
15
votes
5
answers
12k
views
how to show html on pop over using angular ui bootstrap?
I make demo of pop over like this .It show a pop over on right side when I click the button .But now problem is that how I will show some html on pop over .
<html ng-app="plunker">
<head&...
0
votes
0
answers
172
views
Watch functions accumulate when Angular UI modal is opened
I have the following code in a directive. The directive is included in an Angular UI modal:
var watchObjects = function(){
scope.vars.forEach(function(elem,i){
scope.$watch('vars['...
5
votes
3
answers
2k
views
Avoid using $timeout in Angular UI Modal
In this plunk I have an Angular UI Modal wrapped in a directive. From the controller, I call a method to open the modal, but to do so I need to use $timeout, otherwise, the DOM hasn't finished ...
19
votes
7
answers
16k
views
using ui.bootstrap causing issues with carousel
I am having issues with getting the carousel working properly. I used yeomen to scaffold the angular app.
I am getting this error
Error: [$compile:ctreq] Controller 'carousel', required by directive '...
0
votes
1
answer
6k
views
AngularJS controller, required by directive, can't be found
I have an error for each "message"
Error: [$compile:ctreq] Controller 'accordion', required by directive 'accordionGroup', can't be found!
with my code in html
<h2 data-ng-if="!!messageData....
15
votes
3
answers
20k
views
Angular JS render JSON in tree like format
How do I render JSON in tree like way just like http://jsonviewer.stack.hu/ does using angular JS?
0
votes
1
answer
660
views
Bootstrap alert message is not working inside angular run blocks under ui-router?
I am doing sample application to autologut if user is idle for 30 Min. before 1 minutes to logOut have to show an warning message to the user.
So i have calculated the minutes and show the warning ...
1
vote
2
answers
2k
views
Controller 'uibCarousel', required by directive 'uibSlide', can't be found when wrapping
I have a directive that wraps that carousel directive. When I replace the slides object it comes up with an error saying "Controller 'uibCarousel', required by directive 'uibSlide', can't be found ...
2
votes
2
answers
7k
views
how to select value in UI select value?
could you please tell me how to select value in UI-select value ?
Actually when user select any name I want to select age of item .Here is my code
http://plnkr.co/edit/InxOyQRjrlrDJtx2VuzI?p=preview
...
0
votes
1
answer
3k
views
how to select default value of ui select?
could you please tell me how to set default value in UI -select .
here is my code
http://plnkr.co/edit/tCrEM4oC9iMSYZffbEAX?p=preview
I want "Adrian" should select as by default .could you please tell ...
15
votes
2
answers
20k
views
how to make ng-model value set by ui-select value
I am currently using angular-ui/ui-select in my project. I am able to bind the value of the ui-select to an object without issue, however it is binding the entire item that is being iterated over. I ...
1
vote
2
answers
2k
views
Angular UI Bootstrap modal display during $http request
I am trying to create a directive that uses angular ui bootstrap modal. I would like to open this directive from my controller when a $http request is made, and close it when the request resolves. I'm ...
1
vote
1
answer
371
views
Typeahead seems to lag one $http request behind, whats the bug here?
I know Customizing out of the box typeahead directive is not a good idea, so went ahead and created another directive called type-ahead-custom for my customization.
here's plunker https://plnkr.co/...