I have a requirement to dynamic show the sub total based on a expression returned from the service. See the sample item structure below. property value is binding to a text input. If any of the input value changes, sub total is updated according to the expression in a label. What's the best way to do this?
Note: number of fieldname/Value pair can vary.
$scope.item = [
{fieldName: "fname1", value: 2},
{fieldName: "fname2", value: 5},
{fieldName: "fname3", value: 4},
{fieldName: "fname4", value: 6},
{fieldName: "fname5", value: 3},
{fieldName: "subTotal1", expression: "['fname1'] + ['fname2'] +['fname3'] +['fname4'] +['fname5'] +"}
]
Oh my God! I did it! Look :)
Of course, this solution is not perfect. And it depends on the variable name used in the controller. But it works!
Live example on jsfiddle.
And js controller:
And js directive:
UPDATED
Now it works without reference to a local variable!
Live example on jsfiddle.
Controller
And directive