Questions tagged [mddialog]

$mdDialog is a directive of AngularJS that opens a dialog over the app to inform users about critical information or require them to make decisions. There are two approaches for setup: a simple promise API and regular object syntax.

Docs

https://material.angularjs.org/latest/api/service/$mdDialog

Demo

https://material.angularjs.org/latest/demo/dialog

Syntax

$mdDialog.show({} /* options */);
167 questions
0
votes
1 answer

Yeoman - Angular Material partial html template are not correctly loaded after grunt build

I've made an Angular Material web application using Yeoman as project starter. When I run grunt serve I can see the website in localhost correctly and everything is working. When I run: grunt build to build my web application, it finishes without…
ronIDX
  • 758
  • 1
  • 5
  • 20
-1
votes
1 answer

How to pass response data from http.get() inside of mdDialog to main controller?

I have a mdDialog inside of my application that makes a call to an API which responds with some data. I need this data response to be accessible in the main controller so that it can be used in another call. CRUD operation $scope.add_id = []; …
gnomes
  • 39
  • 1
  • 5
1 2 3
11
12