99 questions
0
votes
1
answer
336
views
Datetime is not shown in Firefox browser for AngularJs project
I have been working in an ASP.NET Webform project where AngularJs is used. In a form angularJs datetime picker is used to show date and time. Whenever the form is open datetime should show in the ...
0
votes
2
answers
978
views
how to make border red if date is invalid in angular js?
I have a form in in which I have two field DOB , and marriage date .I want if marriage date is less than DOB I want to show red border .I am able to get if DOB is greater than marriage But I am not ...
0
votes
1
answer
68
views
Unknown provider: uibCarouselProvider when trying to change it's template
I am trying to get angularjs to play nicely with local templates that override bootstrap ones.
I had initially use the same file path (uib/template/carousel/carousel.html for example) which is fine ...
0
votes
1
answer
2k
views
Angular UI Modal: Inserting an Image into the modal body
I am very new to AngularJS and have to integrate the Angular UI bootstrap to an existing AngularJS application.
Inside the modal I have to place a screenshot and that's it. No unnecessary clutter. ...
0
votes
2
answers
107
views
Angular pre-selected
I have a modal that can edit. But in my modal I cant pre-select.
This is my HTML
<select ng-model='names.productionType' ng-options="data for data in productionType"></select>
This is my ...
0
votes
2
answers
67
views
Modal in Angular $injector:unpr Unknown
I'm having this problem trying to use modals in angular
$modalProvider <- $modal <- User.Ctlr
Here's my app.js
'use-strict';
var App = angular.module('App', ['ui.bootstrap']);
Here's my ...
2
votes
1
answer
31
views
Fetch server settings after boostrap but before anything else
I've been searching for an answer for this but haven't got any unambiguous or clear answer on how to solve and come about this.
In my anguarJS app, I want to make sure that the very first thing after ...
1
vote
1
answer
765
views
Send selected typeahead option through typeahead-on-select
<input type="text"
class="topic_select"
id="selectTopic"
ng-model="topicsPopulate"
uib-typeahead="topic.name for topic in topics|filter:$viewValue"
uib-typeahead-...
1
vote
0
answers
70
views
angular-bootstrap-lightbox plugin issue in safari browser of Window
I have using angular-bootstrap-lightbox in my project . its working fine in all browser.
But issue in safari of window.
Image that display in open modal is get disappear after display.
I have ...
0
votes
0
answers
543
views
Typeahead AngularJS | Autocomplete when click
I'm using the getbootstrap typeahead to populate an input value. I've setup everything so that the user has to pick something from this list:
<input type="text" class="form-control" id="birdname" ...
0
votes
1
answer
139
views
angularjs bootstrap ui active tabs not loaded by default
i am using angularjs v1.5.5 and ui-bootstrap-tpls-1.3.2.
i loading page the dynamic. i have 3 pages. i want to load last page by default
$scope.tabs = [
{ title:'Page A', template: 'a.html', ...
1
vote
1
answer
1k
views
How to Add Custom Header for bootstrap popover in angularjs application
How we can add the custom header in popover in bootstrap .. I have used below code and i want to add custom header with some links:
<script type="text/ng-template" id="abc.html">
<...
0
votes
1
answer
246
views
Angular.js $compile doesn`t working
I try to change all input type dates in project to uib-picker-popup, I use directive and $compile but new element doesn`t work. When I put result html to new .html its working fine, I guess there is ...
0
votes
1
answer
641
views
How to declare and use modules, controllers, services and bootstrap manually in Angular?
i'm trying to build an AngularJS app that has one Controller, one Service and that Bootstraps manually (no ng-app). The problem is that I keep having an error :
Argument 'AppController' is not a ...
3
votes
1
answer
24k
views
Bare minimum code for AngularJS Carousel
I spent all day trying to get the "example" AngularJS Carousel to work, and it was only thanks to finally stumbling upon this topic that I finally got it to work.
Starting with the Carousel example ...
5
votes
2
answers
5k
views
How to make other directives work inside uib-tab elements
Is there a callback function for uib-tab directives I can use to refresh the inner directives after a tab has been rendered?
I am trying to find the source of an issue with a third-party directive ...
0
votes
0
answers
57
views
Have I lost scope in this template?
I have a partial page with the angular-ui carousel plopped down in the middle of it. That directive has a template-url attached to it:
<carousel interval="0" no-wrap="false" template-url="/...
0
votes
1
answer
64
views
Controller initialization in AngularJS
<html>
<body>
<div ng-controller="TestController">
Framework is {{name}}
</div>
</body>
</html>
Am making the ...
4
votes
1
answer
2k
views
Auto positioning of tooltip using AngularJS
I want to position my tooltip automatically, like if I am at the top of the browser scrollbar, and there is a link with the tooltip in the first line then the tooltip must be displayed at the ...
0
votes
1
answer
1k
views
bootstrap dynamically height in navibar
I'm new in bootstrap and angularJS.
but I'm building page where top and left side page will be static not moving.
I use <nav class="navbar navbar-default navbar-fixed-top from bootstrap to header ...
1
vote
1
answer
1k
views
Multiple input fields and buttons on single line using Bootstrap
I have the following single line containing an search input bar and 2 buttons. How do I style this to make the search input box smaller according to the buttons next to it? I would like to add 2 more ...
0
votes
1
answer
687
views
How to hide a div in Menu Collapse
I finally got the collapse menu working for the Bootstrap Angular UI. However I still couldn't figure out how to hide the div for the "hide-mobile" class and show the "show-mobile" class in the mobile ...
1
vote
1
answer
482
views
how to dynamically change the max value of rating in angularjs bootstrap ui
I just started using angularjs. I am using angularjs bootstrap-ui for this project. I am rating directive and I want to change the max value. But the changes are not reflected on the rating directive
...
0
votes
1
answer
1k
views
Argument is not a function, got undefined with angular bootstrap, ui-router and requirejs
I am following Dan Wahlin's example of dynamically loading controllers using requirejs but with angular ui-router.
this is my app.js
var bootstrapper = angular.module('etrading', ['ui.router', '...
1
vote
1
answer
3k
views
Angular Bootstrap: Tooltip placement based on function
I'm using the Angular Bootstrap Popover:
<button popover-placement="top" popover="On the Top!" class="btn btn-default">Top</button>
If using default Bootstrap JavaScript, it's possible to ...