Detecting duplicate hooks in component
@bracke wrote: Hi Is there any way to make ember-cli warn about duplicate hooks in a component? Example: didReceiveAttrs(){ this._super(...arguments); .. ... }, .. .. . .. . . didReceiveAttrs(){...
View ArticleChange routes from an older version
@Pop_Levente wrote: Hi Guys, we are trying to upgrade our packages within a project and we encoutered an issue with our routes. there is still some resourses used there. example : Summary...
View ArticleDatepicker allowing function for disable
@bsylvain wrote: I need to be able to have a datepicker with only one day of each month selectable. It seems to do so I need to use a function returning a value informing if the date is valid or not....
View ArticleWhen to add Ember Data
@ef4 wrote: This post is a followup to some discussions in Slack with Learning Team people. I wrote: Hypothesis: we should stop trying to teach routing and ember-data simultaneously. They are separate...
View ArticleMultiple ajax requests in a model
@danmalone89 wrote: I’m using ember-ajax to pull some data from an external API in my model. I need data from one end point (/personalprofile) to be used in two other calls (/attorney, /cpa). However,...
View ArticleGetting issue when run ember serve
@Harsh wrote: Hello, Anyone help me on this issue Build failed. Build Canceled: Broccoli Builder ran into an error with SourceMapConcat plugin. ENOENT: no such file or directory, open...
View ArticleEmber and bootstrap : failed to build because of SassCompiler
@Oudriss wrote: 0 down vote favorite I am working on an ember project and I’ve decided to integrate Bootstrap by installing ember-bootstrap and using sass preprocessor : _ember install ember-bootstrap...
View ArticleHow to include custom font files to an ember addon?
@LogeJay wrote: Hi, In our ember addon, there is no public directory. Is there a way to include font files in the addon and use it inside. Posts: 2 Participants: 2 Read full topic
View ArticleScript Tags in Ember
@danmalone89 wrote: I’m trying to implement MyScriptJS into my Ember app. However, I can’t seem to get my script tags to work either in my index.html or application.hbs file. What’s the appropriate...
View Article12-factor for ember
@StuartGuthrie wrote: I’ve search, can’t find a reference to this and I guess it’s as emberjs is normally not deployed to a bunch of saas and on-prem sites with different configs for each. I would...
View ArticleEmber Concurrency and `store.unloadAll` fall out of sync
@WMattGardner wrote: Hello, Here’s the issue as best as I can describe, and I’d love some input on what might be causing it as well as any general “red flags” folks might notice (aside from this...
View ArticleThe use of Map VS. Objects
@sukima wrote: I have run into many situations where what I need is a Map. When I do I always have the same question that needs to be answered: Should I polyfill Map or attempt to use a POJO as a Map?...
View ArticleEmber-Concurrency queue on task in component
@pjcarly wrote: I have a problem with my current set-up, and i’m looking for some ideas or creative problem solving. I have a model, with an attribute of type “file”, the “file” attribute is a custom...
View ArticleCan I add a custom helper to a {{link-to}} component?
@sorvah wrote: I have a couple of places in my application where I add some query-params to a {{link-to}} helper. They have gotten quite unwieldy and ‘hardcoded’ for example: {{#link-to...
View ArticleI like Ember a lot, But I'm Worried
@Mofungo wrote: I like Ember a lot… But, I’m worried about transitioning to it. I work on a data-heavy site that is ~300 jsp pages. We need to get out from under jsp and into a framework that will...
View ArticleFind element in DOM
@Nitram wrote: Hi, I want to get name and width in px (element) of differents elements when they are created. I use Ember.run and “afterRender” for this, but I would like to use something else of...
View ArticleConverting Ember addon to ember engine
@harimath wrote: When converting any Ember addon (say my-custom-app) to an Ember engine, what all things does it loose like ? Meaning since engines are more isolated, does it loose ability to be...
View ArticleIs coalescing find requests still a good practice considering HTTP/2?
@jelhan wrote: If I got it correctly, coalesceFindRequests is mostly used to reduce the number of network requests fired if application needs to fetch multiple records of the same type in one runloop....
View ArticleEmber not routing from front-end to JSON API back-end
@UsuallyReliable wrote: I am new to Ember and am unable to diagnose a 404 HTTP Error between the Ember front-end and a .NET Core 2.1 JSON web API. Can someone please help? I have posted a link on...
View ArticleHow to create clickable tooltip with MouseEnter function
@Boo wrote: I have created a tooltip option for the html item file. In that the additional requirement is clickable option need to create in the Tooltip When I’m clicking the option, it has to...
View Article