All Questions
146 questions
0
votes
1
answer
38
views
Angular.js (angular-ui) : "resolve" not returning anything in the child component
While trying to get data from the "resolve" object. I cannot get anything from what is found in the parent component.
Structure
partner-component
partner-list-component
Result
Parent code
...
0
votes
1
answer
642
views
How to get recursive Tree view working AngularJs
Working on this AngularJs(1.4) code snippet and need help to get recursive tree view to work as desired.
It currently has 4 levels, and what is needed is:
When I open a folder, it should close all ...
1
vote
1
answer
398
views
Angular-UI Datepicker min-date setting with another date
When user inputs date range using angular-ui Datepicker, I wanna make mindate of EndDate set 'StartDate`.
in my view,
<div class="input-daterange input-group" id="datepicker">
<input type=...
0
votes
1
answer
353
views
Show Angular UI Modal one second after opened
In this plunk I have an Angular UI modal that, when opened, it should be hidden for one second and then displayed. I use ng-show in the template itself, but that hides the contents, not the modal. How ...
3
votes
1
answer
528
views
AngularUI Bootstrap Carousel not working properly when binding HTML content with $compile
AngularUI Bootstrap version ^2.4.22
AngularJS version 1.6.4
Angular Sanitize version ^1.6.1
I'm having trouble using AngularUI Bootstrap's Carousel plugin. In my scenario, i need to read an ...
0
votes
1
answer
425
views
UI-TAB SET == Active tab on button click
I am working on a front end developement. I have tabs and these tabs are developed using "UI=TABSET"
So My question is , Lets assume i have 2 tabs.. tab1 and tab2. Firstly am on tab1..under tab there ...
1
vote
0
answers
249
views
Angular Dependencies in Webpack with ui-iconpicker
I'm attempting to use Justin Lao's ui-iconpicker in my web app. I needed to modify the source code to add a custom icon set and I'm having trouble getting my custom .js file to run. I have everything ...
-1
votes
1
answer
625
views
angular bootstrap datepicker get visible dates (day mode)
I need to get visible dates from the Datepicker if mode is day.
Example:
In this case I need to get these 42 days. Also if user change month, I should refresh the Datepicker controller view and get ...
1
vote
2
answers
703
views
angular bootstrap datepicker disable dates with $http request in dateDisabled function
So i have uibDatepicker directive (https://angular-ui.github.io/bootstrap/#datepicker) where i want to send request for each day provided in datepicker, hit server with that date, and return if it ...
26
votes
4
answers
27k
views
How to handle 'Possibly unhandled rejection: backdrop click' in a general way
I have an angular service for handling modals:
angular.module('myApp').service('ModalService', function($uibModal) {
function open(options) {
return $uibModal.open(options);
}
});
Now I ...
0
votes
0
answers
998
views
Angular UI bootstrap carousel get active slide Object
I'm trying to get active slide object from slides array, in angular UI bootstrap carousel:
My current solution:
app.controller('myContr', ['$scope', '$http', 'filterFilter', function($scope, $http, ...
2
votes
2
answers
356
views
How to display navigation and footer in every page in Angularjs?
I'm making a SPA. I want to make a separate component for Navigation, Section, and footer. Navigation and footer must display for every page when I go to Home or About page, only the Section should ...
1
vote
1
answer
583
views
Pass selected language from uib-dropdown language selector to $scope
I have next html template where user could select language:
<div class="btn-group" uib-dropdown>
<button type="button" class="btn btn-default dropdown-toggle" data-...
1
vote
1
answer
2k
views
Add id to ng-template with Angular Bootstrap accordion
I'm having trouble adding dynamic id to the heading template. I tried including an id="{{group.title}}" but it doesn't work. Any help or suggestion would be great!
<div ng-controller="...
2
votes
1
answer
977
views
How to assign value to angular pagination custom template?
I am using custom template for angular pagination:
<uib-pagination
boundary-links="(vm.pagination.boundaryLinks == false) ? false : true"
num-pages="vm....