Ember new app installation probelem
@velugu wrote: when i starting a new ember app it showing continuously like this .. Successfully initialized git. Installing packages for tooling via npmInstalling packages for tooling via...
View ArticleHiding globals introduced by bower packages
@kayo wrote: How do we get rid of globals introduced by a bower package? bower install base64-js --save I'm just getting the hang of how this works and If I understand correctly, the globals get...
View ArticleSmall ember scripts in an traditional application?
@GCorbel wrote: I have a Rails application and I want do convert some part from JS to Ember. Because I don't want to replace the Rails routing system, I don't need to use the Ember routes. What is the...
View ArticledidUpdateAttrs not called on array modifications
@siva_abc wrote: In the guide, it is said the didUpdateAttrs will be called when there is a change in the attributes used by the template....
View ArticleEmber CLI / NPM Install / Insane number of packages installed
@OakBehringer wrote: Ember CLI 2.4.1 Create a new project, delete the node_modules dir, run npm install. There number of npm packages installed the second time (from npm install) is ABSURD compared to...
View ArticleClean up spaces on compiled htmlbars?
@Kilowhisky wrote: I've noticed that when i look at compiled HTMLbars code it has things like this. e.createTextNode("\n ") Is there a reason this isn't optimized away? Is it possible to remove these?...
View ArticleQuery-parameter associated with object attribute
@kgish wrote: I'd like to define a queryParameter that's associated with a give object attribute rather than the object itself. So for example, I have the following: currentObject: { firstName:...
View ArticleHow to refresh ember model on creating new record
@anaspm wrote: I tried to create a new record in a route using createRecord method and I persisted it using .save() method. it is getting saved in db and showing record in my view component. but I am...
View ArticleAction handling
@Sarath wrote: Which is the best way to remove the scheduled action of a route if I make a switch to another route? Posts: 1 Participants: 1 Read full topic
View ArticleHow to disable a wrapper tag for the template in Ember 2.4.*?
@iAchilles wrote: Hello guys! If I want to disable (or just change) a wrapper tag for the component I do the following: export default Ember.Component.extend({ tagName: '', ... What is the best way to...
View ArticleHow to install ember-cli
@velugu wrote: how to install ember-cli in freebsd Posts: 1 Participants: 1 Read full topic
View ArticleService injection fails in tests for ember-ajax
@bryan wrote: So I recently migrated my code from using ember-cli-ic-ajax to using ember-ajax. However, I can no longer get my tests with mocked ajax calls to work anymore. The tests are reporting at...
View ArticleService Injection into routes fails (Ember 2.4.1)
@iAchilles wrote: I try to inject a custom service into routes -services/custom-service.js import Ember from 'ember'; export default Ember.Service.extend({ isSuccess: false }); -routes/myroute.js...
View ArticleThis.get('property') undefined because component
@hschillig wrote: So in my controller, I have an action when the user submits a form. It has code like this in it: this.get('propertyName') However this returns undefined because the form is inside a...
View ArticleVersion control with shelljs for ember
@Kunal_Sharma wrote: Hi Friend, I am new to ember and I have just started it learning a week earlier. I have been asked to learn and start working on new application using ember and addons created by...
View ArticleEmber CLI 2.4.2 produces empty vendor.css?
@me7486 wrote: Hi, Just updated to Ember CLI 2.4.2 from 2.3.0. Both Ember Server and Ember Build produce a completely empty vendor.css file. Everything works as expected with 2.3.0. Potential culprit...
View ArticleDS.PromiseArray retrieve object
@Alessio_Varalta wrote: Hi I have a landing page with and in the model route i have model(){ var tmpModel = {}; return this.store.query('user', {filter: {user: this.get('auth.currentUser.id')}});...
View ArticleProblem routing ember and mirage
@Alessio_Varalta wrote: Hi, I have created a model with name criteria export default DS.Model.extend({ age:DS.attr(), info:DS.attr(), demand: DS.belongsTo('demand'), }); name of file criteria.js. but...
View ArticleRun ember build only for selected folders from controllers and templates
@manoj wrote: I need to run ember build only for selected folders from controllers and templates. The folder selection may vary depending on the request. How to achieve this functionality. Posts: 1...
View ArticlePerformance for nested components
@matanya wrote: Hi, I work on Ember 1.13.11 I have "many-levels-nested-component" (=component inside component inside component, etc.). When I destroy the nested component it looks like that an...
View Article