ReferenceError: transitionTo is not defined
@Harun_Tuncay wrote: Hi.I am tying to save a post object. savePost(newPost){ newPost.save().then(()=>transitionTo('posts.index')); I get back the error in the title." transitionTo is now defined".I...
View ArticlehasMany not updated only when changing the route
@Henry wrote: Hi guys, I have a strange problem. Let's say that I have two models post and comment. post has a hasMany relationship with comment. In the route posts/:id I can list all the comments...
View ArticleIs it bad to depend on computeds of services?
@ykaragol wrote: Assume that we have some (computed or not) properties at a service. Is it bad to depend on them in another service's computed properties? Why? Posts: 1 Participants: 1 Read full topic
View ArticleAcceptance Testing in Ember
@l_tonz wrote: Hi guys, I have a question. Are there any good resources on doing acceptance testing? In particular, I am interested in learning how to do acceptance testing with dynamic routes and...
View ArticleUnable to access emberOauth2 as a service
@em.b wrote: I'm using the ember-oauth2 library v2.0.2-beta, having installed it using the command: npm install --save-dev ember-oauth2 I have configured my config/environment.js file as follows, per...
View ArticleCapturing params change on same route
@gaurav_kumar1989 wrote: Hi , If i navigate from one route to another route , i am able to capture params using : controller : Ember.Controller.extend({ queryParams: ["sk","isFFT"], test1: null,...
View ArticleNew video by Packt, "Ember.js Solutions"
@packtpub wrote: As video tutorials are catching on in the Tech world and developers leaning towards video tutorials, Packt has published a new video Ember.js Solutions by Erik Hanchett. This video...
View ArticleCORS or ActiveModel Serializer (ember+rails)
@Harun_Tuncay wrote: Hi, i want to use rails api as backend but i am new and i actually have never done it. I have seen some tutorials, some of it users CORS (cross origin resource sharing), and some...
View ArticleModelling a tennismatch. Can I nest child routes under an unsaved parent?
@davegoulash wrote: Hi, I'm trying to model a tennismatch in Ember. I have the datamodel, it looks right, but what about these routes? Router.map(function() { this.route('matches', function() {...
View ArticleCould not find module `ember` imported from `my-project/app`
@Bauke wrote: Somehow out of nowhere I'm having this problem with running a project and an add-on as well. And I have no clue what's going on. I have an Ember add-on and a consuming application. But...
View ArticleAdd objects to an array property of the model from a component. DDAU
@davegoulash wrote: Hi, I have a component that gets passed the model Point As per DDAU I want to add to an array of shots, which is a property of Point. I therefore need to obtain or pass in the...
View ArticleChoosing Ember over React in 2016
@jessepollak wrote: Hey all! I just wrote a long blog post about why we chose Ember for Instant 2FA after using React in production for 3 years and I thought people on the forums might enjoy it. You...
View ArticleExport data from ember table and chart to excel sheets
@Meenal wrote: In our application there are 3 tabs. Each tab renders 3 charts and a grid (extended from ember model table). We need to export the charts and grid from each tab as a separate sheet in a...
View ArticleEmber-cli-mirage accept post() even I didn't defined function!
@Woosung_Chu wrote: I am very new in Ember-cli-mirage. I defined get() method only in mirage.config.js this.get('/bugReports',function(Schema,request){ return{ 'bug-report': Schema.db.bugReports };...
View ArticleError when using torii with ember-simple-auth
@em.b wrote: Hi guys, Trying to learn ember and more specifically how ember implements oauth2, e.g. ('Sign in with X') functionality. I've played around with ember-simple-auth, torii, and...
View ArticleHow do we stop Ember recompute chains?
@ofersadgat wrote: I have a property which is based on time and I have properties which depend on that property. The problem is that the whole tree gets recomputed every time the time property...
View ArticleHi and a path to Ember
@carusog wrote: Hi, my name is Giuseppe Caruso, and I decided to start learning Ember for my front-end needs.I would like to thank you all for the community I found here. Finally, I wanted to ask you...
View ArticleStyles/app.css building with 'undefined [undefined]' errors
@accelerate wrote: I'm getting a strange error with ember build that started happening only after I migrated from ember-suave to ember-cli-eslint + eslint-plugin-ember-suave, but it doesn't seem like...
View ArticleModelling a tennis match. Can parent Routes observe changes made by child...
@davegoulash wrote: I have an Ember where I can keep scores. It's got heavily nested routes, from Match -> Set -> Game -> Point I guess my question is: can a Route observe changes in its...
View ArticleIs possible using ember-cli without Babel
@flpms wrote: I'd like remove Babel from my Ember projects, this is possible? PS: I don't like Babel! I like ES6 features, but not the way Babel generates it. In Babel still a lot of residual and...
View Article