9
Tôi có thể truy cập một biểu mẫu trong bộ điều khiển không?
Tôi hiện đang sử dụng như sau. $scope.$$childHead.customerForm[firstName], vậy nên: <form name="customerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> </form> Nhưng điều này chỉ hoạt động trong Chrome. Bây giờ tôi đã thử như sau: $scope.editCustomerForm[firstName], vậy nên: <form name="customerForm" ng-model="editCustomerForm"> <input type="text" name="firstName" ng-model="data.customer.firstName" tabindex="1" ng-disabled="!data.editable" validationcustomer /> …