All Questions
Tagged with angular-ui angularjs-bootstrap
10 questions
4
votes
1
answer
2k
views
Auto positioning of tooltip using AngularJS
I want to position my tooltip automatically, like if I am at the top of the browser scrollbar, and there is a link with the tooltip in the first line then the tooltip must be displayed at the ...
0
votes
1
answer
686
views
How to hide a div in Menu Collapse
I finally got the collapse menu working for the Bootstrap Angular UI. However I still couldn't figure out how to hide the div for the "hide-mobile" class and show the "show-mobile" class in the mobile ...
2
votes
1
answer
1k
views
Angularjs ui bootstrap date picker icon issue in firefox
I am using Angularjs ui bootstrap date picker but the icon <i class="glyphicon glyphicon-calendar"></i> is not appearing properly in firefox but the icon is fine in Chrome. Please see the ...
6
votes
2
answers
11k
views
What are the reasons for append-to-body in Angular Bootstrap?
Several directives in Angular UI Bootstrap have an append-to-body option. When would I need to use this and what are the advantages and disadvantages to it?
0
votes
2
answers
491
views
AngularJS and ui-sortable(branch 1.2): ng-mouseover breaks after sorting
I upgraded my App to AngularJS 1.2 and so also switched to ui-sortable v 1.2.
The sorting is implemented for Accordion-Groups (from ui-bootstrap). With the master-tree version of sortable i could ...
0
votes
2
answers
2k
views
AngularJS 1.2.0 Bootstrap UI 0.6.0 (bootstrap3_bis2) Typeahead
I'm trying to pass a promise to the Angular Bootstrap Typeahead, but I'm getting always the fallowing error:
TypeError: Cannot read property 'length' of undefined
Factory:
angular.module('app')....
0
votes
0
answers
2k
views
Angular.js defer AppCtrl and any routing
I would like to delay the initialization of the AppCtrl and any route change until the "app settings" have arrived from the server.
I'm using the AngularJS-boilerplate which is including ui-route and ...
4
votes
1
answer
693
views
Keeping a AngularJS bootstrap popover visible as element updates
I'm using an AngularJS bootstrap popover on an element using popover-trigger='mouseenter'. The element updates using angularFire, and after an update, the popover disappears until I move my mouse (...
45
votes
8
answers
93k
views
How do I create an AngularJS UI bootstrap popover with HTML content?
I want to create a bootstrap popover with a pre tag containing a prettified JSON object. The naive implementation,
<span popover='<pre>{[ some_obj | json:" " ]}</pre>'
popover-...
0
votes
1
answer
2k
views
Angular Bootstrap: How to show a popover based on a child elements' trigger?
Demo Fiddle
I'd like to show some help text using a popover for the entire group of fields, not for each individual input.
In the fiddle, I'm simply using a mouseenter trigger to show how it should ...