Packaging a ember addon in app.js instead of vendor.js
@akshayrawat wrote: Is there a way to bundle an ember addon in app.js instead of vendor.js. Addons seem to get packaged into vendor.js by default. In this case both the app and the addon is authored...
View ArticleCreate record from another one
@gagagast wrote: Hi, I try to create a model in a route file using data from an another record… What is the best way to achieve this aim ? I tried this : model(params) { return this.store...
View ArticlerequestAnimationFrame based rendering
@sam wrote: Recently I learned about: https://bugs.chromium.org/p/chromium/issues/detail?id=570845#c9 Chrome 47 has a new feature which lowers the priority of timers during active input when the...
View ArticleShouldn't ember data fulfill an async hasMany without explictly coding the...
@algernon4 wrote: I’m working a project, where we get many lists for one id. I’m told this should be able to happen automatically in ember data if I define the component property as...
View ArticleReaders' Questions - "How do I pitch Ember at my company?"
@locks wrote: Hello once again to Readers’ Questions, presented by the Ember.js Times folks with a little help from the core teams Today we have a question by wootag43 regarding how to pitch Ember.js...
View ArticleSelect tag using Ember
@chani wrote: {{#if view.vehicle}} Vehicle TYpe {{view view.Select multiple=“true” class=“model” name="vehicleList" contentBinding="view.vehicleModel" optionLabelPath="content.itemLabel"...
View ArticleIs it possible to disabling Ember inspector for a specific app?
@osousa wrote: The question: Is it possible to disable Ember Inspector (Chrome or Firefox) for a specific Ember app? This might sound counter intuitive but can be useful in making slightly harder for...
View ArticleEmber 3.0 withouth an optional client side template compiler?
@tmlrd42 wrote: Hi, I have to say that I am relatively new to ember. I like the tooling, speed and best practises it uses, and I understand that for normal approach you would not need a client side...
View ArticleCorrect way to load module from node_modules
@MrChriZ wrote: I’m slightly confused as to the correct way to load a module from node_modules in one of my controllers. I’ve added aws-sdk using yarn which has installed it in node_modules. I’m using...
View ArticleEmber CLI in 2018
@twokul wrote: Hey all! Ember CLI core team would love to get your feedback on the 2018 roadmap: features, improvements, pain points, and anything that would improve your DX. Here’s what we are...
View ArticleShould I use Webpack?
@seal wrote: Hi, I’m coming from PHP so I’m not very familiar with JS technologies so I apologize in advance if this question is too obvious. I searched for Webpack and Ember and couldn’t find...
View ArticleEmber 3 and PHP7, still possible?
@everydaypanos wrote: Hi, I have been using Em with a PHP(LAMP) cluster for many years now and I was disappointed to say the least when I saw that Em3 onwards the only platform that you can use...
View ArticleHow to remove an addon folder from vendor.js and save it in another file?
@phcoliveira wrote: Hello there and thanks in advance! For some unusual, but thoughtful, reasons, I would like the files from the addon folder of some private addons to be compiled in another file,...
View ArticleWhat is the right approach of catch block inside the model() hook in emberjs
@mikeelemuel wrote: Am I allowed to add a catch method in my model hook? i.e. something like this: model(params) { return this.store.findRecord(‘shop’, params.slug).catch(() =>...
View ArticleEmber microlibs & npm importability
@izelnakri wrote: ember microlibs should be importable in node.js. People should be able to require or import EmberObject or Ember.Route or Ember.Component and play with it/debug it interactively in...
View ArticlePagination in a RESTful API
@cassianpry wrote: I am new to Ember and am using the RESTful API pokeapi.co to learn. This API has 949 pokemons and has filters to list 20 per page. API URL https://pokeapi.co/api/v2/pokemon/ count:...
View ArticleBest-practice to test if add-on can be used with ember-engines
@marxsk wrote: I’m trying to find some information about how to set-up testing for ember add-on when used in ember-engines. For example, I’m aware that let i18n =...
View ArticleInserting "outlet" in a jqGrid table?
@samdong wrote: I have a jqGrid table. When a table row is selected, I’d like to show some detailed info right below the row selected. However, this “detailed info” is generated by an Ember route....
View ArticleChanges to nested array not being reflected upon splicing
@PDog wrote: My route’s model has a nested array with data that gets rendered in the template. I noticed that when doing array.pushObject(foo), the appended data is immediately visible but when...
View ArticleReaders’ Questions - “Will breaking up Ember remove the need for Glimmer.js?”
@locks wrote: Hello once again to Readers’ Questions, presented by the Ember.js Times folks with a little help from the core teams Today we have a question by Jonathan regarding the future of...
View Article