현재 다음을 사용하고 있습니다.
$scope.$$childHead.customerForm[firstName]
그래서 :
<form name="customerForm">
<input type="text" name="firstName"
ng-model="data.customer.firstName"
tabindex="1"
ng-disabled="!data.editable"
validationcustomer />
</form>
그러나 이것은 Chrome에서만 작동합니다. 이제 다음을 시도했습니다.
$scope.editCustomerForm[firstName]
그래서 :
<form name="customerForm" ng-model="editCustomerForm">
<input type="text" name="firstName"
ng-model="data.customer.firstName" tabindex="1"
ng-disabled="!data.editable"
validationcustomer />
</form>
작동하지 않습니다. 내 양식은 Foundation 탭 안에 있습니다. 어떻게 액세스 할 수 firstName
있습니까?
편집 : Foundation 탭 안에있을 때 form
추가되지 않은 것처럼 보입니다 scope
.
누구든지 이것에 대한 해결책을 가지고 있습니까?