Ember has a select view which is a view that generates subviews for it’s option tags. Would it be possible to make a component that can generate sub tags within itself? Similar to:
Spark.InputFieldComponent = Ember.Component.extend({
tagName: "select",
setup : function() {
var testView = Ember.View.extend({
tagName : "div"
});
this.set("childViews", [testView]);
}.on("init")
That could generate something like:
<select>
<option></option>
</select>