Try looking here:
https://github.com/emberjs/ember.js/blob/master/packages/ember-handlebars/lib/controls/select.js#L21
You can override template
or defaultTemplate
to possibly achieve what youāre trying to do, if you reaaaally need/want to do it (though it seems unnecessary).
You could feasibly do something like
defaultTemplate: function(context, options) {
options = { data: options.data, hash: {} };
Ember.Handlebars.helpers.view.call(context, SomeViewOrComponentClass, options);
Ember.Handlebars.helpers.view.call(context, SomeViewOrComponentClass, options);
Ember.Handlebars.helpers.view.call(context, SomeViewOrComponentClass, options);
Ember.Handlebars.helpers.view.call(context, SomeViewOrComponentClass, options);
Ember.Handlebars.helpers.view.call(context, SomeViewOrComponentClass, options);
},
I havenāt actually tried this out but should probably work without too much crazy hacking.