Im not sure why is it that the option is not selected by default, the values are hard coded and I explicitly added 'selected' attribute on option tag but its not working. I also tried selected="selected"
but still its not working.
in View:
<div class="controls">
<select chosen="" data-ng-model="assignments" multiple=""
class="span chzn-select" style="width: 150px">
<option value="Police">Police</option>
<option selected value="Reporter">Reporter</option>
<option value="Developer">Developer</option>
</select>
</div>