The tag has no usage guidance.

learn more… | top users | synonyms

0
votes
1answer
16 views

passing variables into angular-ui modal

I'm having some issues transferring the modal example from the angular-ui documentation here: https://angular-ui.github.io/bootstrap/#/getting_started I keep running into this error: Argument ...
1
vote
3answers
56 views

Angular route inside modal

I have 2 routes: app.config(['$routeProvider', '$locationProvider', function( $routeProvider, $locationProvider) { $routeProvider. when("/list/:class", { controller: ...
0
votes
0answers
19 views

Statefull modal as child of root state

I have a problem. I've created a modal state, that is a state for modal and is a child state of a root state. In the root state i have a list of articles in ng-repeat that create a scrollable view. ...
0
votes
0answers
20 views

POSTING data from Angular UI bootstrap modal window to PHP

I have a angular-ui modal, that is controlled with below controller: var emailModal = angular.module('myApp.emailModal', ['ui.bootstrap', 'ui.bootstrap.tpls']); emailModal.controller('ModalCtrl', ...
0
votes
1answer
16 views

Unable to pass API response to uimodal

Below is my code snippet where i'm trying to use uimodal to display the user detail along with additional detail. I'm failing to bind the response data to uimodal, Kindly help to resolve this. ...
0
votes
0answers
127 views

How does angular “$uibModalInstance.close(data)” works?

The official documentation of AngularJS does not contain any thing that describes how $uibModalInstance.close works, in the following code fragment, scope.close is a method used to close the modal ...
2
votes
3answers
39 views

Inject constant to a Controller in angular js(Issue with modal popup)

I am showing a modal popup on click of a button in a row in ng grid.So to get a form in the modal popup i am filling it with JSON Schema as follows The Html Of Modal Pop Up is <div ...
0
votes
1answer
44 views

ui-bootstrap how to get the scope in view aliased

View calling modal I have this code you should: open a modal bringing the data within the controller being used by the angular-ui-bootstrap. But it is not getting the result of the "item" that is ...
4
votes
2answers
1k views

Angular UI Bootstrap Modal: [$injector:unpr] Unknown provider: $uibModalInstanceProvider

This is a bit strange. When I search this issue online I see many pages of Google results and SO solutions... but none seem to work! In a nutshell, I am trying to implement AngularUI Bootstrap ...
0
votes
1answer
128 views

how to use angular-ui modal templateURL with node/express routing

I'm somewhat confused as to why I get this error. I have a hunch it's with the templateURL and I have tried a few things but to no avail. I have read the documentation and scoured a bunch of SO posts ...
0
votes
0answers
101 views

UI modal window changes the width of the parent window

I am using ui modal window in my project. Here how I call the window from controller: $scope.open = function () { var modalInstance = $uibModal.open({ animation: ...
1
vote
0answers
42 views

angular crud dialog one generic or unique

I started to build an AngularJs app. I have many dialogs with add\edit operations. My question is should I build functions/controllers/services for each one of the operations but have the same html ...
0
votes
2answers
41 views

Angular-UI router, not refresh if coming from /modal routes

Is it possible to configure something globally so that every time a new route is entered it checks to see if the previous route began with /modal and if it did then don't refresh the controller, just ...
0
votes
0answers
49 views

Angular UI Router with UI Modal

There are some variations on this question on SO and floating around the web already but they're a bit different and don't have conclusive answers. Basically, I'd like to change the UI Router state ...
0
votes
3answers
62 views

How to get value from parent parent scope?

On one page I'm doing something like this: <tr ng-repeat="innerCommunicationTopic in data.InnerCommunicationTopics"> <td>{{innerCommunicationTopic.Topic | Empty}}</td> ...
0
votes
0answers
69 views

Angular UI Modal Controller in Meanjs

Problem: I have a modal screen to edit the table data in a meanjs application. I used the yo generator for the CRUD operation. In the create view I have a modal which has a separate controller which I ...
1
vote
0answers
31 views

Forced recalculation of CSS when opening Angular UI Modal

I'm using Angular UI to include modal windows on a site and every time I click to open a modal there is a noticeable delay before it injects the HTML into the DOM. I tried absolutely everything to ...