You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can i use form validations with multiple models? For example:
model: function() {
return Ember.RSVP.hash({
company: this.store.createRecord('company')
accounts: this.store.createRecord('accounts')
});
}
I thought it could be like the following, but it didn't work.
{{em-input property="model.company.name"}}
The text was updated successfully, but these errors were encountered:
How can i use form validations with multiple models? For example:
model: function() {
return Ember.RSVP.hash({
company: this.store.createRecord('company')
accounts: this.store.createRecord('accounts')
});
}
I thought it could be like the following, but it didn't work.
{{em-input property="model.company.name"}}
The text was updated successfully, but these errors were encountered: