A set of AngularJS directives based on Twitter Bootstrap's markup and CSS
0
votes
0answers
7 views
Change the paginator links with the angular-ui bootstrap carousel?
I'm using angular-ui bootstrap carousel and would like to change the right and left navigation links with images. It seems that within the tpl they are hardcoded with ‹ and ›
Does ...
0
votes
0answers
19 views
How to improve plnkr includes Angular UI Router and Angular UI Bootsrap Carousel [on hold]
http://plnkr.co/edit/uOW7tUQ2D5P22pBgLyoK extends Ben Schartz's fiddle on Angular UI Router, and loads a partial html containing the Angular UI Bootstrap Carousel demo. Apart from too many includes, ...
0
votes
0answers
19 views
Angular-UI Bootstrap - Collapse - what event is triggered when the collapse animation is completed both for showing and hiding?
So I am trying to execute a function that needs to wait for the animation on the angular-ui bootstrap collapse function to finish. I cannot seem to find what that event would be for the angular-ui ...
1
vote
1answer
25 views
checkbox in angular-ui tab's header
I am using AngularUI's bootstrap library 0.4.0. I want to make a tabset that has checkable header, Plunker demo. However, as you can see, I cannot check the checkbox at all. Any suggestion will be ...
0
votes
1answer
91 views
+50
AngularJS + UI Bootstrap Typeahead: preload value from object into input field
I am trying to use AngularJS + UI Bootstrap Typeahead to fill in input field with name attribute of an object while I need to use id attribute of this object when the form is sent.
The problem is ...
2
votes
1answer
919 views
Angular UI Bootstrap Modal strips id and class attributes
Live Example
Adding the following Angular UI Bootstrap Modal:
<div id="my-id" class="my-class" modal="opened">
<p>Modal Here</p>
</div>
results in:
<div class="modal ...
0
votes
1answer
52 views
How to create an Angular UI Bootstrap Accordion Group with no body?
I'm quite happy with the Angular UI Bootstrap Accordion, but I encountered a problem when creating a Accordion Group with no body. The Accordion will always create an empty body and I couldn't find a ...
0
votes
1answer
25 views
UI-bootstrap typeahead does not resolve promise
Problem description
Hi, I have a problem with UI-Bootstrap's typeahead, there is standard example on the homepage that demonstrates typeahead usage:
...
0
votes
1answer
23 views
UI Bootstrap's typeahead refuses to iterate through object
According to docs found on official ui-bootstrap, typeahead directive "uses the same, flexible syntax as the select directive"
But unfortunatelly it seems that typeahead directive refuses to iterate ...
0
votes
0answers
38 views
AngularUI DatePicker
I am trying to use AngularUI Bootstrap DatePicker (http://angular-ui.github.io/bootstrap/) on my form, and everything is working fine, but when I click on the Next or Previous month buttons, it posts ...
0
votes
1answer
43 views
AngularJS BooutstrapUI Typeahead with object & selection functionality
I'm trying to implement a typeahead in Angular using http://angular-ui.github.io/bootstrap/, where the typeahead field displays full addresses but once clicked another field is populated with just the ...
0
votes
1answer
37 views
AngularJS BootstrapUI Typeahead - whats $viewValue?
I'm trying to implement a typeahead in Angular using http://angular-ui.github.io/bootstrap/
Seems like it should be easy, but I'm getting the following error:
Global symbol "$viewValue" requires ...
0
votes
0answers
36 views
Tooltip not working inside ng-repeat
The following shows the tooltip text:
%a{:href => "http://google.com/"}
%span{:tooltip => "TEST"}
= "test"
The following does not show the tooltip text:
%div{:"ng-repeat" => ...
0
votes
3answers
142 views
Using a Conditional Statement in AngularUI's Collapse Directive
Can I place a conditional statement into the collapse directive for AngularUI?
I have the following setup, which has 3 radio-style buttons:
<div class="controls controls-row">
<div ...
0
votes
0answers
20 views
Modifying an accordion to behave like a table
For 4 hours I have been trying to modify the accordion template to look and feel like a table row. Essentially, I want to have a table where each row element is an accordion group that when clicked on ...