Where should we list shared talks and resources available for reuse?
@gavinjoyce wrote: It would be good if we had a easy to browse/consume list of resources available for anyone who wishes to give an Ember related talk or conference proposal. These could include...
View ArticleA list of initial shared resources
@gavinjoyce wrote: While we figure out where these should ultimately live, let’s use this thread to list some initial shared resources. Posts: 2 Participants: 1 Read full topic
View ArticleESA - mock with Mirage when using implicit grant authentication
@belgoros wrote: I’m stuck with a way to mock the authentication with ESA (ember-simple-auth) when using implicit grant authentication. Is there any docs or examples ? Thank you. Posts: 3...
View ArticlePromise: How to turn off reject / fulfilled or handle them?
@kimek wrote: I have component which I’m testing when it cannot get ManyTo model for visitor (404). This brakes our application if for 1 milisecond our server will be down. Not ideal scenario. How to...
View ArticleHow Ember knows which URL to hit in the backend?
@belgoros wrote: I can’t figure out what is the convention rule in the when querring in model hook in a route handler. How Ember knows which URL to hit in the following situation: Here is my router...
View ArticleBest Practice: What helpers might do
@beddu wrote: Hi everybody, Ember api reference states: Ember Helpers are functions that can compute values, and are used in templates. https://emberjs.com/api/ember/release/classes/Helper Thinking...
View ArticleWhat's a good Ember HTML editor addon?
@GregWeb wrote: Hi I have an app that lets users insert custom html. RIght now it’s just a regular textarea but I want the editor to not only beautify the user’s html, but also validate it against a...
View ArticleIn-repo Addon Not found
@mdbiscan wrote: I’m trying to import an in-repo addon in my project. It builds an object and exports it in lib/myaddon/addon/index.js. lib/myaddon/index.js: var fs = require('fs'); var options = {};...
View ArticleEmber helper -pass in a n object
@belgoros wrote: Isn’t it possible to pass an object to a helper instead of pass several parameters ? I have a shop-name helper defined as follows: import { helper } from '@ember/component/helper';...
View ArticleHow to load data in application route
@belgoros wrote: I’m using ESA (ember-simple-auth) and have login and logout actions defined in application.js route as follows: # routes/application.js import { inject as service } from...
View ArticleAbstracting routes away
@Ben_Glancy wrote: Hi, I have an Ember.js project that is a room planner. We try to sell it as it is but the customer usually wants customisations made to it. One of the battles I’ve had while...
View ArticleEmber data changes in parent component not refelecting on UI
@harimath wrote: I have a parent component which has an accordion panel (with multiple/dynamic number of rows) {{#my-accordion accordionPanels=accordionPanels as |accordion| }} {{my-details-row...
View ArticleHow to remove records in store when they are not in server anymore
@xudaiqing wrote: I have application which may lost connection with server for days and when it finally reconnect some record exist in store didn’t exist in server any more. I try to fix it but can’t...
View ArticleSyntax to get current user attributes in a route hander when using ESA
@belgoros wrote: I’m confused on how to get the current user attributes in a route handler when using the way to manage Current User as explained at ESA wiki page. Here is my dashboard router: #...
View ArticleNested Instance Of Ember Models Table
@parekhpiya2002 wrote: Hello, I want to use nested ember models table eg. Step 1 : I want to use ember models table(parent Instance), step 2: map expandedRowTemplate to a component , step3 : call...
View ArticleEmber JS telegram channel
@Konstantin_Lazukin wrote: Hi all! Join us at the telegram. Biggest ember.js telegram channel. Telegram Ember_js You can view and join @ember_js right away. Posts: 1 Participants: 1 Read full topic
View ArticleHow to handle checkbox binding
@jufu233_Li wrote: Hi all!! I am new with ember and I have a question about checkbox binding. Here is my hbs : {{#each menu}} Completed <p class="float-right" id="{{m.id}}" {{input type="checkbox"...
View ArticleIs There Any Hook That Runs After The Dom Settles
@tundebabzy wrote: I’m learning Ember JS with Foundation CSS framework but I’m having a little problem with instantiating a plugin. I’m instantiating the javascript plugin in application.hbs like...
View ArticleHelp getting ember-cli-mirage working
@mikeburg wrote: Hi folks, This is my first time working with ember-cli-mirage and I need some help trying to figure out how to get it working. None of the ajax calls, either made by ember-ajax or...
View ArticleCSS Image Paths
@Ben_Glancy wrote: In production built with Version 3.0.0 my images don’t load if they are specified in the CSS as a background say:. background: transparent...
View Article