I have a server side rendered page and I would like to be able to dynamically set the input values of the Angular component from the webpage.
<body>
<testcmp [testa]="'Blue322'"></testcmp>
</body>
http://plnkr.co/edit/YoZOnGWI6R1Urj89tJAZ?p=preview
I notice that I am only able to set the values of the component from a template ('testb' in my plunkr) but not from outside ('testa').
What do I need to do to be able to set the value of 'testa' from the webpage?