I try to pass some attributes to an input-field using embers bind-attr.
<input {{bind-attr requierd="field.requierd" type="field.type" name="field.key" id="field.name"}} />
All but requierd work. I assume ember has some sort of list of allowed attributes. Is it possible to add new ones?
Someone had a similair problem and used, though TextField, doesn't seem to be the thing I should extend.
App.TextField = Ember.TextField.extend({
attributeBindings: ['required'],
required: null
});