I can’t use a dynamic type value in an input helper:
{{input type=dynamicValue}}
is this a bug or by design / on purpose? Can I easily get around it without many conditional statements?
I can’t use a dynamic type value in an input helper:
{{input type=dynamicValue}}
is this a bug or by design / on purpose? Can I easily get around it without many conditional statements?
this works
{{input typeBinding='dynamicValue'}}
Indeed, confirmed. Thank you sir!