Questions tagged [ng-dialog]

ngDialog is a modal and popup provider for Angular.js. It aims to be minimalistic, easily theme-able, and dependency-free. Use this tag for questions related to the use of ngDialog.

ngDialog is licensed under the MIT license. More information, including a demo, is available on the ngDialog website.

161 questions
0
votes
1 answer

how to avoid the pre-clicked state on ngdialog

I'm using ngDialog to display the content on the page, but for some reason it shows the dialog's head in pre clicked view.
JP.
  • 1,035
  • 2
  • 17
  • 39
0
votes
1 answer

ngDialog - popup not updating scope variable

I am updating one scope variable from an ngDialog popup. View : controller.js $scope.selected_file = {'id' : '22'}; If I have the above…
Rakesh
  • 5,793
  • 8
  • 36
  • 37
0
votes
1 answer

angular-datepicker doesn't work in ngDialog

I use https://github.com/likeastore/ngDialog and https://github.com/alongubkin/angular-datepicker And angular-datepicker doesn't work ngDialog.open( { // template: '
Sergey Kolesov
  • 480
  • 4
  • 16
0
votes
1 answer

ngDialog contents not clickable?

I am using ngDialog dialog box for my mean.js application with the following call : ngDialog.open({ template: 'modules/users/views/userDetails/dialog.client.view.html', scope: $scope, closeByDocument…
Rohit Rane
  • 2,790
  • 6
  • 25
  • 41
0
votes
1 answer

$location.path is changing the scope of the Controller

I have this ngDialog modal: $scope.showMessage = function(size, status, data) { // open modal page ngDialog.open({ scope: $scope, template: 'orderResponse.html', controller: $controller('OrderResponseModalController',…
Jahongir Rahmonov
  • 13,083
  • 10
  • 47
  • 91
0
votes
2 answers

Parent view does not get updated

I am using angular with ngDialog. I have in my view a list of users with an edit button which opens the user details in a ngDialog. Now when i save the data in my ngDialog I would like the list of users to be updated. I thought to use a observer…
sanders
  • 10,794
  • 27
  • 85
  • 127
0
votes
1 answer

Change the size of modal in ngDialog

does ngDialog allow different sizes of modal? For example, bootstrap-angular modal has such function: $modal.open('sm') or $modal.open('lg') which will open small and large modals respectively. Is there such thing in ngDialog?
Jahongir Rahmonov
  • 13,083
  • 10
  • 47
  • 91
0
votes
1 answer

Plupload not work with ng-dialog

I'm trying to make plupload work in modal window, generated by ng-dialog. The code is: $scope.showManager = function(){ ngDialog.open({ template: '/template/fmanager.html', controller: 'FileManagerController' …
0
votes
1 answer

Google map fitbounds not working with angularjs ng-dialog

I am using ng-Dialog module of angularjs for vehicle trip view map. My angularjs directive for trip-map is working fine and map is loaded with fitbounds in the complete window (not in ng-dialog model popup) but it does not work in ng-dialog popup.…
Janty
  • 1,708
  • 2
  • 15
  • 29
0
votes
3 answers

Error with ngDialog

I'm using the ngDialog project in order to display a popup on my website. I downloaded the project zip from github, it comes with examples data, this works , but when I work with external templates and controller it doesn't work .. I already search…
Nicolas Charvoz
  • 1,509
  • 15
  • 41
-2
votes
1 answer

Difference from returning in a promise and outside a promise

In the code below. When i put the return true in the .error or in the .success function. Then nothing happends. But when I put it outside my .error or .success function then it returns nicely and it closes my ngDialog when i return true. However I…
sanders
  • 10,794
  • 27
  • 85
  • 127
1 2 3
10
11