Tagged Questions
0
votes
1answer
17 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 ...
5
votes
3answers
6k 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)" ...
4
votes
2answers
3k 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
...
0
votes
4answers
670 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 ...
0
votes
0answers
103 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
196 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 ...
2
votes
0answers
218 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
219 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
194 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 : ...
1
vote
0answers
231 views
angular-strap's Aside module with angularUI-bootstrap
Are there any examples for implementing angular-strap's Aside module with angular-ui-bootstrap?
0
votes
1answer
728 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 ...