Component property not updated on URL change?
@dump_array wrote: Hi, i have two components in my template: {{ property-pie-chart models=model.hosts defaultProp="" filterByDate=filterByDate chartData=[] }} {{ paged-filtered-list data=model.hosts...
View ArticleIs {{outlet}} mandatory to use in Application template?
@msram1002 wrote: Without {{outlet}} helper, my template is being rendered through application template. Is this feasible as I have read that template would be rendered through {{outlet}}. Posts: 1...
View ArticleWhat's the proper way to route from components?
@alidcastano wrote: Inside a component, this.transitionTo or this.TransitionToRoute do not work. My current work around is to inject the router service, for example: export default...
View ArticleUnable to read yml file when Ember has been deployed to S3
@stephennyu wrote: So, here's the problem I encounter: I use this package https://www.npmjs.com/package/ember-cli-yaml-configAnd it works perfectly on my local computer in which I can read data from...
View ArticleComputed property is not updated when computed on object's property
@Jeffrey_Cheung wrote: I think I have found a bug on computed property. I have a component my-cell, responsible for render 1 event. Please take a look at my component/my-cell.js export default...
View ArticleMake a copy of an Ember app
@myc wrote: is there a way to make a copy of a whole ember app? i tried just copying and pasting the folder for the app, but i get this error when i paste it. "the file name(s) would be too long for...
View ArticleApplication Error/Loading routes
@amk wrote: When a model hook rejects, Ember nicely transitions to the error template for that particular route. This works fine, and I've been using it for years. For the first time, I've had to...
View ArticleEmber Auth with PHP Backend
@nopyronoparty wrote: Hi, i'm using laravel as a PHP Backend and i'm trying to set up login with ember simpler auth and laravels authentication. I'm getting the following error: TokenMismatchException...
View ArticleIssue authenticating user session using ember-simple-auth
@gattra wrote: I am trying to authenticate a user session after he/she log in. I call the following in my route to do this: this.get('session').authenticate(authenticator, user.email,...
View ArticleHow do I reference config/environment.js in a plain old JS file?
@pacific202 wrote: The Guide provides an example in ES6 for reading variables out of the environment.js file: https://guides.emberjs.com/v2.5.0/configuring-ember/configuring-your-app/ However, I want...
View ArticleEmber generate nested route
@pat123456 wrote: Hello, The ember guide : nested routessay that when "ember generate route posts/new" in the console, the files "templates/posts.hbs" and "templates/posts/new.hbs" should be created...
View ArticleCreating a route once and reuse it in subroutes without totally exiting from...
@zoltan wrote: Let's say you have a routable modal dialog where you have a complex form or feature. This dialog might have more steps, so it can have subroutes. This dialog can appear across your...
View ArticleChild component updating a property coming from query params via parent...
@yogesharora28 wrote: I am using Ember 1.13.0 and trying to update a property coming from query params in a child component. In child component js, when "time" is not defined, I am setting it to 1200....
View ArticleWorking With MVC and Ember JS
@RanaAjay84 wrote: Hi All, Actually i m working in MVC application with ember js and now facing problem to call MVC partial view in Ember HBS file. So please suggest me the possible solution of the...
View ArticleHow can I get ember-simple-auth to work with fastboot?
@alidcastano wrote: Currently, I have authentication working on my normal ember app, the user can login and signout, routes are protected etc. I even made the default storage cookies, so that fastboot...
View ArticleHow to swap Handlebars for EJS
@Bartekus wrote: Hello everyone, I'm wondering how does one switch Ember from Handlebars to EJS?I'd like to take our existing API documentation website which uses (https://github.com/aksalj/keenDoc...
View ArticleStopwatch examples or help?
@srehg wrote: Hi there! Does anyone have an example of a stopwatch built in ember? Something that displays times for minutes and seconds, and allows users to start, stop and reset? I was able to find...
View ArticleUse custom URL with Ember Data
@markkosho wrote: I have a backend that follows the JSON API specification. In my Ember app, I do something like this: model() { return this.store.query('category', { filter: { forum: 'main' } }); }...
View ArticleIs mixin dead yet?
@Jeffrey_Cheung wrote: Hello guys, I have been thinking about using mixin in my Ember work. However in the guide (2.7.0), nowhere in the guide mention about mixin anymore. Is mixin going to be...
View ArticleHow to properly setup nested routes and integrate mirage
@jas wrote: Hey, I'm working with Ember 2.8 and I've added mirage to my project to help with testing. I'll also be building the backend so I was planning to follow the JSON API specs to deliver the...
View Article