How can I dynamically set the `selected` attribute on an `<option>` tag?
问题 The Ember guide on binding data attributes says that "If you use data binding with a Boolean value, it will add or remove the specified attribute." I'm trying to use this feature to dynamically set the selected attributes on <option> s. I'm finding that I can dynamically set the disabled attribute, but the selected attribute is always omitted, no whether the boolean is true or false. Given this handlebars template: <option disabled={{false}} selected={{false}}>One</option> <option disabled={