Well, I don't know how I can use "dynamic" variables on ng-click
attribute.
In this case, i want update variable from reference in ng-click
ng-if
etc.
My idea is update variables from reference and without create function to update this.
Controller:
$scope.elements = [
//...
{
age:20,
dynamicallyUpdateVariableWithFollowingName:"age"
}
//...
];
View:
<div ng-repeat="element in elements">
<a href="" ng-click="element.dynamicallyUpdateVariableWithFollowingName = 27 ">Update AGE</a>
<h1>You age is {{element.age}}</h1>
</div>
So, i don't want use this method:
controller:
$scope.elements = [
//...
{
age:20,
dynamicallyUpdateVariableWithFollowingName:"age"
}
//...
];
$scope.update = function( varname , value ){ $scope[varname] = value;}
html:
<div ng-repeat="element in elements">
<a href="" ng-click=" update(' dynamicallyUpdateVariableWithFollowingName', 27) ">Update AGE</a>
<h1>You age is {{element.age}}</h1>
</div>
Thanks!
May be this will help you
HTML
js part
You can check your conditions inside the
Update
functionUpdate
Is this you are expecting , check here http://codepen.io/keephacking/pen/yJGVNx?editors=1010