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 />
</form>
Mà không làm việc. Lưu ý biểu mẫu của tôi nằm trong Tab Foundation. Làm thế nào tôi có thể truy cập firstName
?
EDIT : Có vẻ như form
không được thêm vào scope
khi nó nằm trong Tab Foundation.
Bất cứ ai cũng có một giải pháp cho điều này?