Label customization
Is there an option to customize label to a point of having a custom template? I want to have label text and next to it a tooltip which is bit of HTML and font-awesome icon.
Hello and sorry for the late answer. I think the best we can do at the moment is :
{{#em-form-group model=model property='clubName'}}
{{em-form-label text='Label' for='club-name'}}
{{input value=(mut (get model.setting 'clubName')) name='club-name' class='form-control'}}
{{/em-form-group}}
You have some properties of ember-rapid-forms and can do what you want inside the em-form-group block.
ok, and what's the part responsible for showing validation errors?
There is no way to have error validation with this at the moment but I think it should no be difficult to add.
I you want to contribute, you can try to add the mixin InputComponentMixin in this file as it's done here. You will have to do some changes in the template and in the tests but it's not a big deal.
Do you want to contribute?