Tagged Questions
0
votes
1answer
30 views
Using a Pyramid view for an AngularJS dialog template
I have written a web application using Pyramid, a Python web framework.
In one page of my web application, I'd like to implement dialogs. I'm trying to learn AngularJS with AngularUI Bootstrap to ...
0
votes
1answer
36 views
Set input invalid when typeahead-editable is false
I'm using typeahead's UI Bootstrap component and I want to force selection to validate my form.
Is it possible to configure it to set the input invalid when 'typeahead-editable' is set to false and ...
0
votes
1answer
29 views
Angularjs custom directive child scope access parent scope method?
I am trying to create a carousel with AngularJS ans UI Bootstrap. Since the carousel in UI bootstrap only supports images, I wan to write my own directive to support youtube video.
I want the video ...
0
votes
0answers
34 views
Show Twitter Bootstrap tooltip on focus when an angular input has an error
This example is taken from angularjs's docs
<form name="myForm" ng-controller="Ctrl">
userType: <input name="input" ng-model="userType" required>
<span class="error" ...
0
votes
1answer
38 views
ng-include in ui-bootstrap tooltip
I am testing angularJS and ui-bootstrap tooltips :
http://angular-ui.github.io/bootstrap/#/tooltip
What I want to achieve is a tooltip with some working buttons inside.
I have tried :
<input ...
0
votes
0answers
41 views
Conditional dropdown in responsive nav bar
I'm using bootstrap to make a responsive navbar. I like how the dropdown looks in general but it looks repetitive when the navbar is collapsed (as part of bootstraps responsive navbar).
Is there a ...
0
votes
1answer
25 views
AngularUI MessageBox promise not invoked in IE10
I'm running into the following problem, here's the code right away:
// into some function invoked from ng-click
var msgbox = $dialog.messageBox(
'Some Title',
"Some message body", [{
...
0
votes
1answer
38 views
AngularJS UI Bootstrap Carousel go to slide?
I'm new to this AngularJS thing, and I want to create a carousel with Angular UI Bootstrap. Is it possible to go to a specific slide by clicking an button?
http://plnkr.co/edit/X0Mr1sPUr5Je0tfkzgjy
...
0
votes
1answer
54 views
How do you iterate over an array of objects for typeahead?
http://angular-ui.github.io/bootstrap/
I want to use the bootstrap's typeahead, and search two different key-pairs in an object. How do I iterate over an array objects?
Also could someone explain ...
0
votes
1answer
55 views
How to implement a loading dialog whilst dealing with $http request
I am currently writing an AngularJS webapp using parts of Angular-ui - notably UI-Bootstrap
I would like to be able to display a loading dialog while the app gets its data. On initial load I also ...
0
votes
0answers
41 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
38 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
83 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
49 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:
...
9
votes
2answers
1k views
Angular UI: Unknown provider: dialogProvider
I am trying to replicate the following Angular UI example of a simple dialog with a close-button. https://github.com/angular-ui/bootstrap/blob/master/src/dialog/README.md.
However, I cannot get the ...