9
Czy mogę uzyskać dostęp do formularza w kontrolerze?
Obecnie używam następujących. $scope.$$childHead.customerForm[firstName], więc: <form name="customerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> Ale to działa tylko w Chrome. Teraz spróbowałem następujących rzeczy: $scope.editCustomerForm[firstName], więc: <form name="customerForm" ng-model="editCustomerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> Co nie działa. Zauważ, że mój formularz znajduje się wewnątrz …