I was doing the mockup page with using angular JS and html only. I wonder if there is faster that can dynamic bind the selected value in HTML to the angular object Such as if I have sth like:
item.dropdownvalue = 0;
<select>
<option value=0>Pre-Launch</option>
<option value=1>Active</option>
<option value=2>Complete</option>
</select>
That I can bind it to the dropwown so it turn to be:
<select>
<option value=0 selected>Pre-Launch</option>
<option value=1>Active</option>
<option value=2>Complete</option>
</select>
Just like the HTML Dropdown Helper in MVC5