All Questions
11 questions
1
vote
0
answers
724
views
Angular UI Bootstrap loses focus of field after selecting date
After user selects the date, I want to focus to stay on the calendar input field.
Currently, the focus will stay if the user selects "Today" "Clear" or "Close" but not if they select a date.
I ...
0
votes
0
answers
44
views
Telling angular to pickup a dynamically added directive
I am creating a bootstrap popover and I'm trying to use a directive in the content of the popover.
I use the following HTML:
<div data-animation="false"
data-template='<div style="width: ...
1
vote
0
answers
46
views
How can i register third-party directive with another name?
I am upgrading my app from ui-bootstrap 0.11 to to 1.1.2.
As a part of the upgrade i should prefix the directives with "ui"
for example, tab should become ui-tab.
I want to avoid this huge replacement ...
3
votes
2
answers
3k
views
Angular directive for bootstrap popover
I write my custom directive for bootstrap popover, but face some trouble.
This is the code:
angular.module('CommandCenterApp')
.directive('bzPopover', function($compile,$http, $commandHelper) {
...
0
votes
0
answers
363
views
Save to system dialog box in AngularJS
how to get the windows "Save as dialog box" on click of some button in AngularJS? I need to give the facility to save the data in a div tag to a file the user wants in his system.
0
votes
1
answer
192
views
Angular - similar Directives
In my application I need to use few layouts of progress bar:
One with label bellow the bar, one with 3 labels to the right of the bar to name just two.
There should be some horizontal bars and ...
1
vote
1
answer
1k
views
Native Bootstrap vs Angularjs Bootstrap directive
I am migrating an existing web application to AngularJS. As the application is already using Bootstrap 3 I am wondering if it is worth re-writing it with Boostrap Directives. My current understanding ...
3
votes
2
answers
9k
views
ng-pattern Validation not working
I am trying to do validation with angular and Bootstrap but for some reasons ng-pattern validation is not working in Zip Code. Any help will be great in this.
Here's FIDDLE LINK
Not able to paste ...
3
votes
3
answers
5k
views
Extend angularUI popover directive to create a confirm popover
I am trying to create a easy confirm popover when in angularJS. I'm already using AngularUI for many other components which is why it seems like the natural choice to extend.
I have created a ...
6
votes
2
answers
6k
views
Angular ui tab with seperate controllers for each tab
I would like to make a bootstrap tabset with each tab having it's own controller. Can anyone point me in which direction I should go.
Currently I have made several difference controllers, which I ...
1
vote
1
answer
720
views
UI Bootstrap Typahead async not working in AngularJS RC2
Why is the UI Bootstrap Typahead not working in AngularJS RC2 when using the $http service to retreive matches from server? This was working in AngularJS RC1
See this plunker using RC1 and this ...