Tagged Questions
0
votes
0answers
19 views
Multiselect dropdown with optgroup in angularjs
Am having json like
$scope.data={
"testCases": [{
"grpName": "Temp_Removed",
"active": "false",
"grpNameLink": "#Temp_Removed",
"groupDetail": {
...
0
votes
0answers
35 views
Angularjs with bootstap alert - keep the alert on screen when scroll down
I'm using the example from
http://angular-ui.github.io/bootstrap/
<div ng-controller="AlertDemoCtrl">
<alert ng-repeat="alert in alerts" type="{{alert.type}}"
...
0
votes
1answer
23 views
Error in loading a bootstrap ui angular model
I am new to angular and bootstrap, I have my login.html with LoginController.
I try to create a modal popup window, So in order to do it i need to add $modal to the controller, the current ...
0
votes
1answer
56 views
Adding Bootstrap UI Module to angularjs project
I'm trying to add the bootstrap-ui module to my angular.js project. The documentation states that I simply have to add
angular.module('myModule', ['ui.bootstrap']);
to get this working. But I can't ...
0
votes
0answers
42 views
AngularJS: IE throws 404 errors for items stored in templateCache
I am attempting to use the Angular UI Bootstrap library and IE throws a 404 error when it tries to load the typeahead-popup.html template, which is the only one I'm using right now. I am using the ...
1
vote
0answers
17 views
How to refresh the templateUrl in an opened modal from Angular-ui Bootstap?
I have a modal that using a templateUrl. I would like the refresh the html in the template. How can I do that without closing the modal?
I have a modal using a view shared in different context. And ...
0
votes
1answer
45 views
Not able to bind angular select when bootstrap theme is applied
I have a piece of code which works fine in angular 1.2 without including bootstrap, but when I use the selectpicker class of bootstrap the data binding is not happening. Below is the piece of demo ...
0
votes
1answer
153 views
bootstrap navigation not working with angular ng-repeat
I am getting an error while displaying dynamic navigation in angular bootstrap using ng-repeat. The collapse nav is not working
my code is
<ul>
<li ng-repeat="menu in menus.menus">
...
1
vote
1answer
386 views
How do you Bind to Angular-UI's Carousel Slide Events?
I'm using angular-ui's carousel and I need to tell my google charts to redraw after they have slid into view. In spite of what I've read, I can't seem to hook into the event.
See my attempt:
...
0
votes
2answers
247 views
How to set the default tab in bootstrap
I have a question regarding my angular bootstrap ui
I have something like
<div class="container" ng-controller='sCtrl'>
<tabset id='tabs'>
<tab heading="Title1" >
...
1
vote
0answers
568 views
Bootstrap AngularJS carousel: how to let slides cover full page width?
I'm implementing my first angular.js web site (mobile compatible).
I use bootstrap ui carousel.
I would like to create a carousel whose slides occupy the whole page width (as in this example: ...
0
votes
1answer
741 views
No module and Modernizr error when adding angular to requirejs
Im trying to add AngularJS to my web application which already makes use of RequireJS. When loading my test page, i am seeing:
1) Error: No module: MyApp
...
0
votes
2answers
549 views
Bootstrap: Set table column width for small devices
How do I set a column width of a table for smaller devices? I am using boostrap3.
Here is my code:
<div class="table-responsive" style="overflow: auto; height:350px;">
<table ...
-2
votes
1answer
42 views
input tag required check gives tooltip : Angularjs
If i add the required field to the input tag or use the email validation on the input tag in angularjs, I get a tooltip. I want to remove this. I am using bootstrap.
How do i do it?
3
votes
1answer
2k views
Make an accordion with angularjs/ui-bootstrap an using the ng-model
I use angularJs and bootstrap. I have made an accordion where I have put a select for choose the value of the filter and the data-ng-model which doesn't work (the select works if he is not in an ...
0
votes
1answer
1k views
Angular-ui Bootstrap tooltips not showing in ng-repeat (node-webkit app)
I'm new to angular.js and node-webkit, and I'm struggling to make bootstrap tooltips work in content dynamically loaded via ng-repeat.
First, I've tried using standard bootstrap and did the following ...
0
votes
2answers
78 views
Getting selected option in AngularJS
I am generating a thumbnail list of photos (using ng-repeat), and under each one of these photos I have two buttons, one to view more details and another to purchase.
I am finding a problem how to ...
0
votes
1answer
98 views
Angular ui.boostrap - passing a slide number into the carousel
I'm trying to figure out how to pass a slide number into the ui.bootstrap carousel. In the Plunker below, I have two buttons - one which simply opens a modal which contains a slide carousel. The ...
4
votes
1answer
175 views
Making a typeahead with angularJS
I currently use AngularJS and Bootstrap.
I want to make a typeahead which show all options when he is selected (when I click on it) not only when I wrote somthing on it. like the example on this site ...
0
votes
1answer
3k views
Dropdown Toggle with AngularJS That Closes on Click Elsewhere
Implementing a simple dropdown directive that uses ng-show to show or hide a menu is trivial in AngularJS. I want to also close the menu if the user clicks elsewhere in the screen after having opened ...