Overriding `query` in adapter
@khanhhoa wrote: I want to override the query method on an adapter to get some special behavior, but that method is marked as "private", which makes me a little uneasy. Is there any problem with doing...
View ArticleUsing array indices in Ember template
@Ben_Glancy wrote: Hi, If I have an array in my controller/component like myarray:["ben","beng", "benglancy"] In my template can I access the third element of this array directly? And similarly if I...
View ArticleEmber build system for plain, non-ember libraries?
@branscha wrote: The Ember build system is so damn nice, everything works. The transpilation works, module imports, unit tests: fantastic.A lot of people don't realize how difficult it is to create...
View ArticleResolving multiple sequential ember-data operations
@midget2000x wrote: I'm new to both ember-data and promises. How would something like this be done? This is simplified code for an add-to-cart function. I want to get the cart record from the store,...
View Article"npm install ember" creates an additional command
@ramen07 wrote: I'm on Windows 10, ember-cli 2.13.2, node 6.10.2. Here's what I see in %USER%\AppData\Roaming\npm: I can copy/paste the bug (?) character into PowerShell and it acts as if I executed...
View ArticleForce build failure on any ESLint Error
@ctcpip wrote: Before the switch to ESLint, we were able to fail the build for jsHint errors, using the method described here:...
View ArticleIf Match Header in Ember app
@angula_wk wrote: Hi guys,I'm quite new in Ember and I occured the problem i can't handle. When I try to save my model, the following error occures: PATCH...
View ArticleTell different between no relationship and a relationship that failed to load?
@nojacko wrote: Hey. I'm using an async belongsTo relationship to load in data. Sometimes, the data is null so no API request is made but sometimes it has a relation to some deleted data. As far as I...
View Article15 EmberJS programmers in St. Johns Newfoundland?
@jgomo3 wrote: Hello People. I'm really interested in Ember training for my company. I know St. Johns is far away of everybody else, but here there is at least one company doing software with EmberJS...
View ArticleTesting POD components
@ioanszabo wrote: Hi, Here is a link with a basic component test.I have the same component locally on my laptop except is pod component. Online tests work.Locally on pod component there is no .chart...
View ArticleNo 'Access-Control-Allow-Origin' header is present on the requested resource....
@d00medman wrote: I am trying to use omniauth to direct my client to an external services authorization page. My client uses ember.js and my server is a rails server. As things stand, I am able to...
View ArticleNested routes but non-nested templates
@johnunclesam wrote: First of all, thank you all for your efforts in this forum. I have this situation: mysite.com/authors (list of authors) mysite.com/author/1 (author 1) mysite.com/book/1 (book 1 of...
View ArticleWhere is Ember 2.14?
@webdevdude wrote: I'm a little worried about Ember development lately. I see that Ember 2.14 was suppose to be out on June 9th, and it's still in beta-1. Does anyone know why this version (which...
View ArticleEmber cli pagination not changing the display content
@alice wrote: I am using ember cli pagination for local store in my ember app. i have successfully created pagination area with proper page number but the display content is not changing with the page...
View ArticleRollback has many relationship data?
@alice wrote: i have to rollback data which has has many relationship . rollback does not support for relationship. how to deal with this as i have to rollback all the removed values when not saved?...
View ArticleActions best practices, should we even use the actions hash at all?
@RustyToms wrote: My team does a great job at testing, we have acceptance, integration, and unit tests for our Ember App. Sometimes we have found it necessary to modify our coding practices to make...
View ArticleHow to show only one item out of many similar items in a template #each loop
@armikhalev wrote: I have encountered a problem with filtering in templates when I'm trying to show items only once instead of repeating the same item, though coming as a different property. It is...
View ArticleUsing nested templates is more RAM consuming?
@johnunclesam wrote: I'm wondering if using nested templates it's very RAM consuming... Something like this: Router.map(function() { this.route('index', {path: '/'}); this.route('login');...
View ArticleLazy fetch in background after rendering the page
@johnunclesam wrote: I have a simple page "authors" that shows a list of authors. Each author of course has many books, but in that page (and in the API) I don't show(/include) any book data. In the...
View ArticleObserve reload/changes to model
@Hummingbird wrote: I am using ember-changeset for all my validation needs. The thing is that the changeset needs to be initialised with the current model. So, usually this is done in the...
View Article