Tips for staying on top of imports
@erikrothoff wrote: The “new” way of importing Ember components is cool and all, but the multi-levelness of it is really hard to grasp. Previously the computed decorator was simply Ember.computed, now...
View ArticleBest way to yield the active state of a LinkTo?
@samselikoff wrote: I’d like to make a {{ui-link-to}} component that basically extends Ember.LinkComponent but yields the active state, so I can use it in the block. Is there a simple way to do this?...
View ArticleUpgrading ember@1.13.xx to ember@3.1.4
@ShivaramPrasad wrote: i have upgraded my old ember project to the new version but still i couldn’t able to see the front page of my project and output of my project. Even i got the page status code...
View ArticleWill ES5 getters be applied in promise proxy?
@rmmmp wrote: I’m asking because my lack of knowledge prevents me from seeing how this will get implemented. How will this be implemented using modern javascript? Posts: 1 Participants: 1 Read full...
View ArticleEmber Multiple Property Observer
@Mehak_Fatima wrote: Hi everyone, I have an observer that observes multiple properties say ‘X’, ‘Y’ & ‘Z’. Is there any way to find that when a property is fired which exact property was changed?...
View ArticlePrember + ember-cli-fastboot getting $ is not defined on ember build...
@Ryan_Mason wrote: Hey, I am trying to set up Prember (github.com/ef4/prember) to allow only my a list of routes to be rendered to the dist folder on build. When I run ember build...
View ArticleAction delegation through several components
@Garun wrote: Hi there! I am rather new to Ember and yet to understand all of the minute thighs that are happening in Ember. I have a components that has an action that creates an object. export...
View ArticleBenefits of using action rather than pure function?
@rmmmp wrote: Ever since I saw how actions are just normal functions in Glimmer.js, I dropped placing my actions inside an action object. Now my usage is {{my-component foo=(action myAction)}} instead...
View ArticleHow to create the thumbnail link?
@knight wrote: Hello All, I would like to create the thumbnail link preview in list and then click that link We must go to the redirect url. Ho to do? Pls help me. Posts: 1 Participants: 1 Read full...
View ArticleRepeated options coming while clicking table rows
@Boo wrote: Hello, I’m having the table row, for that I have wrote right click option method by using below code and it working fine, click: function (event) { var isConnected = false; if(event){ var...
View ArticlePrevent checkbox from being checked if confirm() popup === false?
@GregWeb wrote: I have an input toggle component which, when clicked, triggers a confirmation window. If the user clicks okay, the checked state becomes true and an action is fired. We have a css rule...
View ArticlenotifyPropertyChange behavior
@lennyburdette wrote: The EmberMap screencast on DDAU input events was a huge moment for me. However, I’m curious why this.notifyPropertyChange('key.path') doesn’t seem to work. It has to be...
View ArticleHow do you set default value for component argument when you use es2015 class...
@nightire wrote: It is common to give a default value for a component argument, then allow users to pass a new value to overwrite it, but it doesn’t work as it should be if you use es2015 syntax. For...
View ArticleBrainstorm: What API would make it easy to statically analyze my components?
@samselikoff wrote: I’m using a mixin from an in-repo addon called ember-cli-ui-components in my app. It’s used like this import Component from '@ember/component'; import { Styled, group } from...
View ArticleWhy won't my templates render after adding a parent route?
@sorvah wrote: To add authentication to an existing application using Ember Simple Auth I have retrospectively split my routes as follows: //router.js Router.map(function() {...
View ArticleHow to create right click option
@Boo wrote: Hello, I am having table row, in that action icon only able to show left click options. Now I need to create right click option for action icon as well as to the total row. Here is the...
View ArticleProblem with loading data
@Dzomba wrote: Hello, I’m having problems with loading data from relationship. Data is loaded in local storage (when you open Ember “Data” tab in Chrome Developer Console it’s loaded and in “Network”...
View ArticleFingerprint ember-engine
@arupbg wrote: How can we exclude fingerprinting for assets referenced in the ember-engine templates Posts: 1 Participants: 1 Read full topic
View ArticleEnber-engine asset funnel
@arupbg wrote: how to exclude folders from ember-engine using broccolli funnel , mergetree Posts: 1 Participants: 1 Read full topic
View ArticleSettings constants for all property names, worthwhile or over-engineering?
@_omairvaiyani wrote: As our code-base is growing, so too is the assets size and load times. One area of optimisation I have considered is property names. I imagine that the compiler is unable to...
View Article