EmberJS

EmberJS – Input Helpers

  • Post author:
  • Post category:EmberJS
  • Post comments:1 Comment

The common form controls can be created by using the {{input}} and {{textarea}} helpers in Ember.js. The {{input}} helper uses the built-in Ember.TextField, Ember.Checkbox classes and the {{textarea}} uses Ember.TextArea class. The following table lists down the input…

Continue ReadingEmberJS – Input Helpers

EmberJS – Actions

  • Post author:
  • Post category:EmberJS
  • Post comments:1 Comment

The {{action}} helper class is used to make the HTML element clickable and actions will be forwarded to the application when the user clicks an event. Syntax <button {{action 'action-name'}}>Click</button> The above…

Continue ReadingEmberJS – Actions