I have the following code that populates a certain select item on a page:
<select ng-model="activity.selectedParent" ng-options="parent as parent.title for parent in parents track by parent._id"></select><br>
I am wondering if it is somehow possible to specify a default option such that I can give it a Title and an ID. For instance, if default is selected, then activity.selectedParent.Title = "None" and activity.selectedParent.id = 0. Is this possible to somehow specify this within the <select> tag using Angular directives? Otherwise, what is the most efficient way of achieving this?
ng-selected