Testing and Coffescript
@ofridagan wrote: Hi, I'm using Ember 1.13.13 and trying to run tests with: ember test. In my tests I use something like: moduleFor('route:four-oh-four', 'FourOhFourRoute', {})but I get: Promise...
View ArticleDDAU with component APIs
@bmurphy wrote: Hello! I'm struggling with the API for one of my components and am trying to figure out what patterns in Ember I can use. My component is a TreeSelectComponent so think of jstree with...
View ArticleComponent helper combined with concat helper does not work in Ember 2.7.0
@Charles_Bourasseau wrote: I have a simple template snippet which does not work since I updated from 2.6.0 to 2.7.1: {{component (concat item.constructor.modelName '-item')}} This now returns an...
View ArticleFuture of GlimmerComponent (angle brackets)
@renato-zannon wrote: Hi, Last november I started a new project using Ember, and thought it would be a good idea to start using the then-new GlimmerComponent for our components. It was bound to be a...
View ArticlequeryParams from route to component and back
@kempt09 wrote: I ran into and issue today with queryParams and realized DDAU was my best solution to solve my issue. I am a advocate of avoiding controllers but with routable components not available...
View ArticleError being logged even though it has been handled
@NicolasPinzon wrote: I'm querying my express backend and if the item is not found it returns a jsonapi formatted error: res.send({errors:[{status:404,title:'item not found'}]}); I don't set a 4xx...
View ArticleLooking for Ember Js developers
@K.Gur wrote: Dear Ember JS developer, First of all, thank you very much for your attention. We are currently conducting a research about JavaScript frameworks at Cardiff Metropolitan University, UK....
View ArticleLearning to nest route correctly
@Sean_Kelley wrote: I am a new ember user having trouble with nesting a related model in url structure and setting up routing and template locations. My problem is that the save action for my nested...
View ArticleWhy does the dev server take 700ms to serve app.js?
@rtm wrote: I notice that the dev server takes 700ms to serve app.js. Of this 200ms is "waiting" and 400ms is "content download". I wonder why that is? Shouldn't it be a quick local retrieval taking a...
View ArticleEmber tutorials from zero to expert
@Rick_Enciso wrote: Hi, everyone Wouldn't be great to get updated online Ember mentorship from experts?(screencasts) I know this concept already exists sort of.. The idea is to have new comers (or...
View ArticleRedirect Based on Data
@Holmes89 wrote: I have two types of searches that I want a route to handle. If I get a result for the first query I want to redirect to another page, if it doesn't I want to execute the second query...
View Article{{each}} How to create blocks/groups in each? Like a Rails 'in_groups_of'
@ginolon wrote: I need this (http://apidock.com/rails/Array/in_groups_of) but in Ember {{each}}. How to? Posts: 1 Participants: 1 Read full topic
View ArticleEncountered a resource object with an undefined type
@silva wrote: I'm trying to implement authentication after the user creation in an ember/rails-apiI'm able to correctly add the user to the database, but I'm getting this in the console:...
View ArticleBroccoli or Webpack
@zoltan wrote: I was happy, that Angular project chosen Broccoli, based on Ember CLI for the Angular CLI project. However, as I see, they are migrating to Webpack...
View ArticleDuplicate events with ember-websockets
@benj.calderon wrote: Hello guys! I have been trying for a couple of days now to get the addon ember-websockets to work but haven't been able to. When the client sends an event to the server and the...
View ArticletvOS Limitations
@drewcovi wrote: Although I'm fully aware that there isn't an effort to build out any sort of "Ember Native" parallel to the other frameworks out there, have there been any discussions on how tvOS is...
View ArticleCan Ember be used for non-SPA?
@zhegwood wrote: Hey, I'm the lead for a group that has built an Angular 1.x application. It's a pretty huge application and it's non-SPA. We're LAMP. I've been tasked with researching/prototyping the...
View ArticleOne-way binding of mutable data through several layers of components
@andyjbas wrote: Consider the following example. A top level component must maintain control over a model, as perhaps only it has the knowledge to initialize a new one, or it is responsible for...
View ArticlePassing functions that return data into components
@chrisdpeters wrote: Is there a way for the route to define data that could be loaded, but only if needed, on-demand? For example, perhaps the route could define functions that return promises that...
View ArticleHow unload related record on specific record?
@Vazgen7788 wrote: For example I have a post model , post hasMany comments. When I unload post record, the post comments did't unload. Post comments stayed in store. Want want to post with its...
View Article