In angularjs I have this code:
<input type="text" ng-model="properties.foreground.value">
I want it to be like:
<input type="text" ng-model="properties.{{type}}.value">
I changed a part of the model input to be a string. It does not work. Can it be done some other way?
ng-model="properties[type].value">.