Hi,
Could you explain me how you’ve implemented two-way data binding with an object as input?
I’m sending a certain object as input to a component. Within this component I create 3 different jqxInputComponents which all have to show one specific attribute of the input-object. However, the initial value of this input-object is never shown.
@Input() organisatieEntity : any;
<td><angularInput [(ngModel)]='organisatieEntity.naam' name="organisatieNaam" #organisatieNaamInput id="organisatieNaamInput"></angularInput></td>
Thanks in advance!
Kind regards,
Matthijs Toorenburg