Tagged Questions
0
votes
0answers
22 views
How do I make an custom popover on table button
I'm trying to add a custom input popover to an button in a table cell in order to add extra details. I'm using angular-ui-bootstrap and I can't quite get it to work as I want.
Here's an simplified ...
0
votes
2answers
34 views
How to design a dynamic progress bar with stages and scalable input with angularjs?
I am trying to develop a progressive bar for fund raising activities. The minimum value is the value for the activity to take place and the maximum value is the max fund it can take. It will be the ...
0
votes
2answers
36 views
Glyphicon issue on alternating row disapears
I am trying to create a table which binds its data via Angular. I am tasked with adding a pencil glyphicon to each row to show that the row is editable. The problem I am running into is if I use the ...
-1
votes
1answer
43 views
AngularJS Dynamic accordion and html form
I have an accordion and it has an HTML form, then when add button is click it will add another accordion and have the same HTML form in it, how can I accomplish this.
I am thinking a script template, ...
0
votes
1answer
23 views
Form not editable if no match is found using UI-Bootstrap's typeahead directive?
Below is the relevant code for how my typeahead input box is setup. Essentially, the user types in a name and the relevant information is loaded into the rest of the form. In the case that no match is ...
2
votes
1answer
49 views
Bootstrap UI Collapse directive behaving weird
I'm a bit stumped with a problem with the bootstrap.ui module for AngularJS.
This is my HTML:
<nav id="sidebar">
<ul id="main-nav" class="open-active">
<li ...
0
votes
2answers
110 views
Use custom data source in angular UI template
I am using ui-bootstrap-tpls to render datepicker in my angular view. I have customized the template in this way :
customDatePicker.html
<script id="template/datepicker/day.html" ...
2
votes
2answers
44 views
2nd Google Map not rendering properly when added dynamically
The following HTML, when copied into an .html file and viewed in a browser directly shows my problem.
<!DOCTYPE HTML>
<html ng-app="myApp">
<head>
<link ...
-1
votes
1answer
49 views
typeahead not working with lower version of ui bootstrap
Here is the plunker link if you changed the version of
<script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.4.0.js"></script> to
ui-bootstrap-tpls-0.6.0.js, it works fine ...
0
votes
1answer
128 views
html <select> tags doesn't work with boostrap classes in IE 8 angularjs
I have an angularjs app with multiple angular ui-bootstrap tabs one of which is static tab and others dynamic tabs.
html select tag with options works fine in static tab and the layout is designed ...
0
votes
2answers
264 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 ...
1
vote
1answer
105 views
angularUI Bootstrap - *.tpls.html not found error
Here is my index.html
<html lang="en" ng-app="bootstrapDemoApp" id="top">
<head>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet"/>
...
1
vote
1answer
97 views
why is the AngularUI bootstrap datepicker not popping up?
trying out angularUI bootstrap's popup datepicker demo. Demo embedded in their page works, but my minimal plunker does not - button click does not popup the calendar. Any idea why?
JS:
$scope.open ...
1
vote
2answers
55 views
change type password style to none with angular
I have a doubt,
I'd like to put in my application a check box, to show or hide the text of a password's input
HTML
<input type="text" ng-model="data.username" placeholder="username" ...
0
votes
1answer
299 views
Angular bootstrap UI modal with close button outside modal-dialog
Is it possible to place a button outside the modal-dialog in angular bootstrap UI modal? All I could find are examples with button inside the modal-dialog section . My requirement is to close the ...
0
votes
0answers
65 views
ui-router: how to avoid a view re-invoking itself
I have multiple sibling-views at the root level like so:
<div>
<div ui-view="carousel"></div>
<div ui-view="home"></div>
...
</div>
I've rigged a carousel ...
0
votes
2answers
500 views
error when injecting $modal in angular
I am trying to open a modal popup based on some condition. However i am getting the below error
Error: [$injector:unpr] ...
0
votes
1answer
1k views
Angular - UI Bootstrap Datepicker not displaying over Bootstrap Modal
I have an Angular app that I am using UI Bootstrap. I have a modal with a Datepicker at the bottom of the modal. When expand the Datepicker, it stays inside the modal. I have tried changed the ...
4
votes
1answer
5k views
Angular-ui tooltip with HTML
I am currently adding some bootstrap tooltips in my application.
All of the "normal" tooltips are ok, but when I want to use tooltip-html-unsafe, all I got is an empty tooltip.
My tooltip:
...