I am using an Angular 1.5 Material Design $mdDialog
in the recommended way, using controllerAs: "dialog"
. In the template I have a form: <form name="fooForm"
. Within the template I can access the form with no problem, e.g. ng-disabled="fooForm.$invalid || fooForm.$submitted"
.
But how do I access that form from within the $mdDialog
controller? From what I read, I would expect to be able to do this:
const doFoo = () => {
if (this.fooForm.$dirty) {
Here this
is the dialog controller.
But I get an error: TypeError: Cannot read property '$dirty' of undefined
. And sure enough, if I put a breakpoint in the code, the controller has no fooForm
property.
I've tried using $scope
as well, but when I put a breakpoint in the code $scope
has no fooForm
property either.
Here's my dialog template:
<md-dialog aria-label="FooBar">
<md-toolbar>
<div class="md-toolbar-tools">
<h2>FooBar</h2>
<span flex></span>
<md-button class="md-icon-button" ng-click="dialog.cancel()">
<md-icon>close</md-icon>
</md-button>
</div>
</md-toolbar>
<form name="fooForm" ng-submit="dialog.ok()" novalidate>
<md-dialog-content>
<div layout="column" layout-padding>
<h2 class="md-headline">Foo</h2>
<div layout="row" layout-xs="column">
...
</div>
</md-dialog-content>
<md-dialog-actions>
<md-button class="md-primary" type="submit" ng-disabled="fooForm.$invalid || fooForm.$submitted">
OK
</md-button>
<md-button ng-click="dialog.cancel()">
Cancel
</md-button>
</md-dialog-actions>
</form>
</md-dialog>
How do I access a form in an $mdDialog
from the dialog controller?
$scope
is still distinct from my controller? I thought that usingcontrollerAs
what used to be in$scope
was now in my controller. I guess that part still confuses me a bit. – Bani