I'm building an hybrid app using Ionic3+AngularJS, and I'm stuck on this:
I have an input like this:
<ion-input name="test" type="number" placeholder="0" text-center></ion-input>
When the user changes the value of this input, I need that the attribute "name" changes its value too, like this:
<ion-input name="test-changed" type="number" placeholder="0" text-center></ion-input>
Is it even possible? Need help!