Şu anda aşağıdakileri kullanıyorum.
$scope.$$childHead.customerForm[firstName]
, Böylece:
<form name="customerForm">
<input type="text" name="firstName"
ng-model="data.customer.firstName"
tabindex="1"
ng-disabled="!data.editable"
validationcustomer />
</form>
Ancak bu yalnızca Chrome'da çalışır. Şimdi aşağıdakileri denedim:
$scope.editCustomerForm[firstName]
, Böylece:
<form name="customerForm" ng-model="editCustomerForm">
<input type="text" name="firstName"
ng-model="data.customer.firstName" tabindex="1"
ng-disabled="!data.editable"
validationcustomer />
</form>
Hangi işe yaramaz. Formumun bir Temel Sekmesi içinde olduğunu unutmayın. Nasıl erişebilirim firstName
?
DÜZENLEME : Görünüşe göre Vakıf Sekmesi içerisine form
eklenmez scope
.
Bunun için bir çözümü olan var mı?