Resolve related models promises to show it on handlebars templates
@kamillacrozara wrote: Hey there! I have relationships like these on my models: //app/models/veiculo.js export default DS.Model.extend({ atendimento: DS.belongsTo('atendimento-veiculo'), atividade:...
View ArticleUpdate user when using singular resource
@Marcelo_Alves wrote: My API is using singular resource - http://guides.rubyonrails.org/routing.html#singular-resources And i'm using the following code in a service to load the current user: import...
View ArticleSpecify action event type dynamically in component
@Roman_Gula wrote: Action helper has option on to specify type of an event, for example <button {{action "select" post on="mouseUp"}}>✓</button> It is possible to specify variable instead...
View ArticleQuestion about recent announcements to "break up" Ember
@Orbyt wrote: I've had a growing interest in Ember recently and am considering rewriting a recently started application in it. I've heard in passing that it was announced at a recent Ember conference...
View ArticleEmber-cli-fastboot incompatibility with existing ember app
@rashid301 wrote: I have an existing ember application. I am trying to make it fastboot compatible.However, fastboot is unable to serve the page statically. After digging through the code, I found...
View ArticleEmber Canary NPM tag
@broerse wrote: Does anyone know why there is no canary tag for Ember? npm view ember-source dist-tags Posts: 10 Participants: 4 Read full topic
View ArticleSenior Software Engineer (Remote)
@nerdyworm wrote: Hello everyone! My company has an open position. Please read the job ad and follow the instructions there. weworkremotely.com Trice Imaging: Senior Software Engineer (Remote)...
View ArticleRefresh templates after a deploy
@johnmcaliley wrote: I'm fairly new to Ember and haven't found a good solution for this. What approach is typically used to get the latest hbs template after a deploy? Here is a simple example of what...
View ArticleHow to publish addons and install them with ember install
@ioanszabo wrote: Hi, Is there a fine looking documentation about publishing ember addons.I want to publish and then install with ember install addon not npm install. Also, It is strange that when...
View ArticleDeal with undefined records in store during record generation? (new in 2.13)
@jfarlow wrote: In upgrading to 2.13 from 2.11 I have a recurring problem where records being created don't show up in peekAll() or peekRecord() calls with their data intact. During record creation...
View ArticleI'm getting broccoli errors
@earlyworms wrote: When doing ember serve I always get random broccoli errors. In order to fix this, I add spaces or a new line on the code that I am working on and then app rebuilds. After that, It...
View ArticleEmber Performance
@niconel wrote: We've been investigating some performance issues on pages using a 3rd party addon (ember-light-table), using the "Performance" tools in Chrome Dev Tools. What we noticed is that the JS...
View ArticleIdiomatic
@vasa-chi wrote: Hi. I can't find any mention of <select> usage in ember documentation.What is the idiomatic way to render select? Currently, I have something like this (using...
View ArticleFetch relations automatically
@ioanszabo wrote: Hi, I have two related models (Notification): import DS from 'ember-data'; import MF from 'ember-data-model-fragments'; export default DS.Model.extend({ type: DS.attr('string'),...
View ArticleAddon is not importing correctly
@skaterdav85 wrote: I'm creating an addon with a mixin. In my consuming app, I import that mixin with import MyMixin from 'my-addon/mixins/my-mixin'; and log it out to the console, and I get this:...
View ArticleStatic data and radio buttons
@kaeid wrote: I have a survey form app with multiple questions, and each question has different set of choices. So I created the following models: /models/question.js export default DS.Model.extend({...
View ArticleEmber.js 2, many click, many relationships, how to handle many clicks?
@johnunclesam wrote: I have these models: Fight: export default Model.extend({ teams: hasMany('team') }); Team: export default Model.extend({ closed: attr('boolean'), fight: belongsTo('fight'),...
View ArticleError when I try to start server
@bgD wrote: Here I've copied the error message in my terminal when I try to start server. Any help would be appreciated! Path must be a string. Received nullTypeError: Path must be a string. Received...
View ArticleWhen is the isExpanded property initialized in the Controllers Guide Example?
@jgomo3 wrote: https://guides.emberjs.com/v2.12.0/controllers/ Posts: 2 Participants: 2 Read full topic
View ArticleThis.get('filter')('') : why this is not throwing an error?
@alexandros84 wrote: Hi, It is week no2 for me in ember and I am coming from a rails-vanilla js background. I would love someone to explain to me what this is: this.get('filter')('').then((results)...
View Article