Any idea why transitionTo("some route") is being aborted?
@samtes wrote: Continuing the discussion from transitionTo("some_route") being aborted ember 2.2.0: Posts: 1 Participants: 1 Read full topic
View ArticleHow can I run a blueprint when I run ember build for a particular environment?
@skaterdav85 wrote: What I want to do is run a custom blueprint when I run ember build --environment=staging. In this blueprint, I want to set up some content-for tags. Any idea how to do this?...
View Article[SOLVED] Fetching and working with nested relationships with JSONAPIAdapter
@pablo-col wrote: Hi, i have a problem with fetching nested relationships from JSONAPI compilant API, beacuse i can't access (returned value is undefined) second level relation. Of course i returned...
View ArticleEmber 2: Getting an object out of query params in a URL
@remino wrote: In Ember 2, for a URL with a query string of ?q[a]=1&q[b]=2, how do I get those params in the controller? I know how to do it with a single string (q=foo) or an array...
View ArticleShould always `model` hook return a record / collection for given route?
@rrh wrote: let's say that I have app/routes/meetings/new.js. New instance of a meeting is created in the component. The component needs project dependency (belongsTo) Now I looks like this: model() {...
View ArticleCreate Emberjs 2.0 project
@mtangoo wrote: I did npm install ember-cli Then ember new project But checking bower json it has emberjs 1.13.x not the latest. Why is that? How do I tell emberjs cli to generate 2.0 instead? Posts:...
View ArticleWhy doesn't store.query() auto-reload a view?
@dknutsen wrote: I guess maybe my real question is "how is store.query supposed to work?" because I might just be misunderstanding this completely. We use store.query a lot in our app as we need to...
View ArticleCan't consume json with relationship
@DylanGuedes wrote: Hello, I have a json server (in phoenix/elixir) and it generates this json: { sections: [ { topics: [ { title: "Botafogo melhor time", subtitle: "quem concorda faz barulho", id: 4,...
View ArticleHow to tell ember-cli to build using another file other than app/index.html
@skaterdav85 wrote: Is there a way to tell ember cli to use another HTML file for building instead of app/index.html? I have an in-app-addon and Im not sure how to find that information. Ive been...
View ArticleSmoke & Mirrors, virtual-each or ember-collection?
@oskar wrote: In our applications we have to render long lists which can easily lead to bad performance. I've found three different ember addons that help the issue by incrementally rendering the...
View ArticleHow to get the currentUser in a controller?
@louisnovick wrote: My goal is to get the currently logged in user's email and save it to the message model when adding a new message to a chat box. What is the best way to get this information into...
View ArticleHuge Huge application
@aamirrajpoot wrote: Hi, I have been working on a very huge application, and which I want to convert to ember. I have started with Ember CLI with PODs and able to create my own components. My concern...
View ArticleEmber serve not working
@valentinul wrote: Hello to everyone, I'm a noob in Ember and JS and I just started with https://guides.emberjs.com/v2.3.0/tutorial/routes-and-templates/. After installing nodejs, bower and watchman I...
View ArticleRails and ember problem with guide
@Alessio_Varalta wrote: Hi I try to study a integration between rails and ember. I find this guide http://nandovieira.com/setting-up-emberjs-with-rails and I have this error at the end..I think the...
View ArticleHow do I create included records in Ember Data 2.3?
@andrew1 wrote: Hi everyone, I'm working with a kind of funky api so I need to normalize the data from it into the JSON API that Ember Data wants. I have 2 models in Ember Data: Task =...
View ArticleEmber refresh on error
@ofridagan wrote: Hi, playing around with ember 2.3.0 I noticed some errors (can't figure what errors) cause the app to refresh! I see the error show up in the console for a second, and then...
View ArticleInitiate Masonry jQuery Plugin for Image Gallery
@Koala wrote: i am creating an Image Gallery consuming the Flickr API to retrieve my photos. I have found the need to use 2 plugins for it: "Masonry" and "ImagesLoaded" The images can throw off...
View ArticleAccessing a Controller Property from Index Template (2.3.0)
@berg wrote: New to ember, tried to avoid controllers but after reading up on things it seems like the most convenient way to handle UI state that needs to be available in a route and component. A...
View ArticleBuild Ember CLI application for Docker
@konrad wrote: Hey, I would like to run my Ember app in different environments/stages but with the same docker image. Until now I just compiled the app with the -prod flag and copied dist into my...
View ArticleDo embers templates bind properties of html elements?
@Roman_Gula wrote: Hi all! I have some code: <select> {{#each data as |item|}} <option value="{{item.value}}" selected={{item.selected}}>{{item.text}}</option> {{/each}}...
View Article