I have the following code:
<select id="document" ng-model="document.Id" ng-options="option.Id as option.Name for option in documents" ng-required="IsDocumentRequired">
<option value="">Please Select Document</option>
</select>
The issue is that I don't want this default value ("Please select Document"), to satisfy the ng-required flag when it is set to true.
In summary, I want the user to be forced to choose an option other than the default.
Thanks