Tagged Questions
0
votes
0answers
62 views
AngularStrap - calling a modal from within a service?
I have a web app that is using AngularJS, Bootstrap 3, and AngularStrap. In this app, I was previously using Bootstrap UI for the Bootstrap directives, but I needed to migrate to AngularStrap in order ...
0
votes
1answer
60 views
Error while referencing both AngularUi and AngularStrap
In one of my angularjs projects, I am using both AngularUi and AngularStrap. When I click a button it should show a popup but it says "$modal.open is not a function". Upon searching , I found that ...
0
votes
0answers
243 views
Does angular-strap select and datepicker support i18n?
I have a angular-strap select defined as follows :
<button type="button" class="btn btn-primary" ng-model="idMedecin"
ng-options="medecin.id as medecin.titre+' '+ medecin.prenom+' ...
0
votes
1answer
449 views
Can I merge Angular Strap's “aside” directive into Angular UI somehow?
I don't really have code to show. I thought just maybe it'd be as simple as copying the module directive from angular strap over to ui bootstrap, but that's very obviously been proven incorrect. Has ...
4
votes
1answer
358 views
Manual trigger of show / hide in angularstrap datepicker
I want to use a button to show and hide the datepicker.
http://mgcrea.github.io/angular-strap/##datepickers
there are no documentations on how to do this
var app = ...
1
vote
1answer
269 views
AngularStrap popover: Object popover has no method on
I'm trying to integrate AngularStrap popover in my app. I have the following code on the button:
<button class="btn btn-primary" data-bs-popover="views/login.html" data-unique="1" ...
2
votes
0answers
316 views
angularjs ngstrap conflict when using dropdown and tooltip together
I'm using ngstrap There is a conflict between and tooltip on ngstrap.
The problem that i want to get value of using ng-model. but when I am using ngstrap tooltip the ng-model didn't work.
Hint : ...
14
votes
3answers
11k views
Best way to combine AngularJS and Twitter Bootstrap
I would like to combine AngularJS and Twitter Bootstrap into a fresh web app. It seems like AngularJS directives have been written for bootstrap. See this link below
...
1
vote
0answers
241 views
angular-strap's Aside module with angularUI-bootstrap
Are there any examples for implementing angular-strap's Aside module with angular-ui-bootstrap?
2
votes
1answer
1k views
How to hide/show same modal instance with AngularJS?
I'm currently using angular-ui-bootstrap $modal to display a dialog which let the user search for and pick a file. The list of files comes from box.com, so I use the box API to search for files and ...
8
votes
3answers
10k views
Good way to dynamically open / close a popover (or tooltip) using angular, based on expression?
I have a form that is wired into angular, using it for validation. I am able to display error messages using ng-show directives like so:
<span ng-show="t3.f.needsAttention(f.fieldName)" ...
0
votes
4answers
942 views
How can I provide callbacks for an AngularStrap or Angular UI Bootstrap Popover, to execute on open and on close?
I am using the Angular UI Bootstrap popover ( http://angular-ui.github.io/bootstrap/#/popover ) and would like to specify a callback function to execute when it is opened and another for when it is ...