English is not my first language so i don't really know how to explain what is going on with words so i'll just use images :)
I have this select here:
<select class="form-control input-lg" name="page" ng-model="campaign.page" ng-required="true">
<option selected disabled>{{"Select the fan page"|i18n}}...</option>
<option ng-repeat="page in fanPages" value="{{page}}">{{page.name}}</option>
</select>
And everything works fine, except that the disabled option "Select fan page" is not showing (check the screen shot)
How was it supposed to look like
Anyone knows why this is happening? i can't figure it out. I'm using Angular js, bootstrap
It is generating this HTML
<option value="?" selected="selected"></option>
Why is it generating automatically this option with "?" value?