I'm currently using the following.
$scope.$$childHead.customerForm[firstName]
, so that:
<form name="customerForm">
<input type="text" name="firstName"
ng-model="data.customer.firstName"
tabindex="1"
ng-disabled="!data.editable"
validationcustomer />
</form>
But this only works in Chrome. Now I tried the following:
$scope.editCustomerForm[firstName]
, so that:
<form name="customerForm" ng-model="editCustomerForm">
<input type="text" name="firstName"
ng-model="data.customer.firstName" tabindex="1"
ng-disabled="!data.editable"
validationcustomer />
</form>
Which doesn't work. Note my form is inside a Foundation Tab. How can I access firstName
?
EDIT: It looks like the form
isn't added to the scope
when it's inside a Foundation Tab.
Anyone has got a solution for this?