I received an angular complete project, and I should make a simple task.
there are some defined data, like dropdown menu, and other objects.
I have to "replace" them with dynamic ones, example:
<c-col xs="5">
<c-input-group>
<span cInputGroupText>Color</span>
<select cSelect id="idColor" [(ngModel)]="color">
<option disabled>Choose...</option>
<option value='1'>white</option>
<option value='2'>yellow</option>
<option value='3'>orange</option>
<option value='4'>green</option>
<option value='5'>blue</option>
<option value='6'>brown</option>
<option value='7'>black</option>
</select>
</c-input-group>
</c-col>
Well, this is pre-defined, and I have to make this working dynamically, using web api rest I have
Someone have hints?
