I'm having two input text box.
I need to combine the values entered in two text boxes and display it in the third.
I'm able to display it if I use only the value
in the third text box.
Box 1:
<input type="text" ng-model="entity.name">
Box 2:
<input type="text" ng-model="entity.code">
Box 3:Box1+Box 2
<input type="text" value="{{entity.name+ ' + ' + entity.code}}">
However if I use a model name in the third box, the logic doesn't seem to be working:
<input type="text" value="{{entity.name+ ' + ' + entity.code}}"
ng-model="entity.fullCode">
Can anyone suggest a fix ??
Your code should actually work. See this JSFiddle for a working demo.
You must assign something to your ng-model attribute, so that it can bind. your code seems to be work. but just display purpose we do this. cheers
You need to use
$watch with true
Fiddle:- http://jsfiddle.net/405qc0xg/
I assume you're using controllerAs syntax and would suggest you do something like this in your controller:
Then you can drop the value attribute and simply bind to the element via data-ng-model/ng-model.
This is a good question as it illustrates how incorrect "thinking in Angular" can lead to issues.
With Angular you start with model first. Then the View is bound to the model and reflects it - not the other way around. What I mean by that is that
ng-value
would not set the model, although it would alter the view. You (or rather, the controller) is responsible for setting the model.So, if you need
entity.fullCode
to equal the concatenation ofentity.name
andentity.code
, then you should set it in the controller.For example, if you wanted to set it any time
entity.name
orentity.code
change, then you could do so with$watch
:Note, though, that since you are binding
entity.fullCode
to another input, changing that input would changeentity.fullCode
and would not make it equal to the+
of the first two.Hope this helps you, please have a look into the plunker
http://plnkr.co/edit/oMUABphr6JcNEhCnCDKq?p=preview
The above code says, when ever the object 'obj' changes, then the code inside the $watch will execute.