We have the new {{input value=name}}. I am using Ember.TextField for blur handling in one of my apps. How do I hadle blur for instance with the new helper?
As far as I know, you can’t use the {{input}} tag to create anything but the default input views. If you want to customize Ember.TextField further, subclass it with MyApp.MyTextField = Ember.TextField.extend({...})and use {{view MyApp.MyTextField}} as usual ![]()
Not sure I understand. Then what is the use case for the new helper? Feels a bit edgy.