Newbie, how to pass the data from the actions to the model?
@Abid_Hussain wrote: I have a component which sends action to the parent in the parent I have handled that action but I need to pass the data to the model hook so that to be rendered via template, pls...
View ArticleIntermittent acceptance test failures that pass when run alone
@McBigG wrote: I'm hoping to get some clues about why I have intermittent test failures. I have an acceptance test that fails when I run the entire module, but all of the individual tests pass when...
View ArticleReview my test ember git repo?
@rssfrncs wrote: Repo link. The repo is a playground for testing d3 integration with Ember, as well as learning nested and dynamic routes and transitions. I am still fairly new to ember with having...
View ArticleDynamic Tabbed Interface
@aamirrajpoot wrote: I am trying to create a dynamic tabbed Interface. I saw http://discuss.emberjs.com/t/supporting-multiple-simultaneous-screens-in-dynamic-tabs-inside-one-ember-application/8659 and...
View ArticleCreate same namespace for a specific set of models instead of creating...
@rekhajikki wrote: How to create different generic adapter for a set of models instead of creating individual adapters for individual models including application level adapter. I have a requirement...
View ArticleInject service on another service
@kayo wrote: Suppose an app has 2 services: service:log service:foo where foo wants to use log. Suppose we want all services to be able to log and if in an initializer we did:...
View ArticleHelp with Ember model DS and Json
@Sameed_Baqai wrote: Hey I am kind a newbie to ember and I am looking for a help: Here is my json file: { "id": 1, "title": "Grand Old Mansion", "owner": "Veruca Salt", "city": "San Francisco",...
View ArticleUse `active` state of `link-to` link outside of the link element
@ohcibi wrote: The problem is as old as the link-to helper: If one needs to add a class based on wether the link is active or not on the parent element of that link instead of the link element itself,...
View ArticleData binding broken after putting raw ajax json in models
@Stijn_Aerts wrote: First I had this code in routes/index.js: hotspots:ajax( { url: 'url-to-external-api', type: 'get' } ).then( function( data ) { console.log( 'hotspots: ', data ); return data; } )...
View ArticleEmber App not playing sound in Chrome
@Koala wrote: I have built an ember music app consuming favorite songs by SoundCloud using the api of this project. You can see the demo here From a couple of days i have noticed that only in Chrome...
View ArticleSimple Progressive Enhancement
@andrew1 wrote: Hi everyone, I've got a slow route that has both a chart and a table in it. The table loads fairly quickly but the chart can take a long time. They do not share data but I'm passing an...
View ArticlePassing components in block form to Ember helpers, and rendering them
@davidpeter wrote: I want to pass to and render a component inside a helper function. For example, let's say I have a helper, t, that, given a String and key-value pairs, returns a string in a given...
View ArticleIs there a native support for file upload in Ember?
@marshallshen wrote: I am new to Ember.JS and I want to create a way to upload a file to my Ember.JS app. Is there a native support for uploading files? Posts: 1 Participants: 1 Read full topic
View ArticleCan I usr ember-cp-validations with ember version 2.3.1 beta?
@anaspm wrote: I am using ember-cp-validations add-on to validate ember form I have created form using bootstrap modal dialog in a component. I used v-get helper to show the message <form>...
View ArticleNeed help in ember unit testing
@Ashok_Kumar wrote: I am using mocha to unit test my ember app. I have an ember controller which has a statement - needs: ['application'], which is blocking my unit test. I am getting the following...
View ArticleBest practices with many to many relationships in JsonAPI
@Henry wrote: Hi guys, how do you let the server know that there is a relationship many-to-many between two models when storing them? I know that in ember-data a relationship of this kind can be...
View ArticleCombining Liquid Fire and ember-gestures
@haggis wrote: Hello, I'm scratching my head about how it's possible to initiate liquid fire slide transition by swiping on a mobile. One problem is, that ember-gestures are always working on...
View ArticleSide loading data with JsonAPI links
@patryk wrote: I've been having a difficult time with this over the last two days with side loading data via the links attribute in a JsonAPI payload. Essentially I have a hasMany relationship where I...
View ArticleAuthorization architecture for ember front-end + rails back-end
@ikarius wrote: I am in the planning stages for my application, and while I've done ruby and JS programming before, I've never scaffolded a full app stack myself before, so please bear with me. I've...
View ArticleHow fast does your test suite run?
@skaterdav85 wrote: The test suite for a project I am working on runs in ~15,000 milliseconds with ~900 assertions. This includes all of my tests, JSHint, and JSCS (via Ember Suave). Because 15...
View Article