Ember-pikaday localization
@belgoros wrote: Can anybody explain how to use a locale that is set up globally in an initializer as follows: #initializers/i18n.js export function initialize(applicationInstance) { let i18n =...
View ArticleTrack changes, Ember 3.x
@rossjha wrote: I’m trying to find the optimal any solution to track changes to nested properties, array of objects and relationships. I’ve tried ember-changeset and most recently...
View ArticleCombining script from app.import with module imports
@andywww wrote: I’m having some problems with mixing app.import and import X from 'Y' I am using ember-leaflet with the usual import { L } from 'ember-leaflet'; but would also like to include this...
View ArticleHow do I make sense of why a very large, old ember app takes so long to build...
@mattmcmanus wrote: Hey friends! I could use some knowledgeable experience about how to take some next steps understanding why an app’s build and rebuild is so slow. I’ve looked through the indicators...
View ArticleNew Feature? Auto-observe get('property') within computed
@omerion wrote: Would it be reasonable to make properties that are referenced within a get() call inside a computed property be automatically observed for changes? Posts: 2 Participants: 2 Read full...
View ArticleDebugging rebuild performance
@lookingsideways wrote: Our app is using ember-cli-postcss and on rebuilds the PostCSS step is always the slowest node even though no CSS files have been changed: file changed...
View ArticleWhat's the difference between ember-cli-qunit and ember-qunit
@mehulkar wrote: I’m trying to upgrade my test setup to as far as I can get it without upgrading ember itself and it’s the first time I’ve looked at all these addons. It looks like we’re installing...
View ArticleEmberData - GoogleCloud Datastore
@Haidy777 wrote: Hi everyone, I’m working with ember a few years in production now. Recently I did a small driver’s log for myself with firebase and the awesome ember-fire addon which is very simple...
View ArticleDebugging Broccoli.js 1.0
@bmurphy wrote: Firstly I apologize that this is not the right place for this. I’m unsure where to go in Slack to get help . I’m using Broccoli.js 1.0 for my build pipeline separately from Ember for...
View ArticleClearing network history on a redirect
@wojo wrote: Hi, I currently have a login system that posts a username and password to my backend for verification. The issue is, that this request stays in the networks tab of the history. Is there a...
View ArticlePrecise host in ember-data-url-templates
@belgoros wrote: I’m using ember-data-url-templates add-on in Ember 3.1 app. This add-on has an option hostto pass in as follows: // adapters/comment import Ember from "ember"; import DS from...
View ArticleHow does ember expects information to be returned?
@spectrevil wrote: Hi. I have been working with ember for about a year to mock up applications in a really fast and lovely way, after getting frustrated about how angular works. Of course all of this...
View Articleemberjs struts integration for existing web application
@Samy wrote: emberjs struts integration for existing web application Posts: 1 Participants: 1 Read full topic
View ArticleMaintaining an order with associations
@andywww wrote: Hiya, I’ve got a route planner app where a Ride hasMany Waypoints. I’m talking to a rails back end with JSONAPI. I want to offer the ability to insert a new waypoint between existing...
View ArticleEmber CreateRecord
@Vishwajit_Kolekar wrote: I am creating record with createRecord() method . after save(). current template dose not show new value. here is my code : actions: { addLineItems(line_item) { var item =...
View ArticleRevert Function option is not working
@Boo wrote: Hello. The revert option is not working as expected, My ember Code is: Admin.Inspector.extend() .named("Admin.RoleInspect.Inspector") .reopen({ name: "AdminUser", icon: 'admin', logical:...
View ArticleIdiomatic way of refreshing the route when deleting from a paged list
@gilles.g wrote: Scenario is the following: We have a list of (Ember-Data) models displayed in a paged list. Paging is implemented using queryParams Each list row displays a “delete” button Clicking...
View ArticleDoes FastBoot "capture" and replay events while Ember boots up?
@samselikoff wrote: We’re playing around with a FastBoot-rendered page and noticed that our links & button clicks seem to work, even if we click before the Ember app has initialized &...
View ArticleCoding style showdown
@sukima wrote: I’ve often not understood the following two coding styles and I am asking for some constructive feedback on them. readOnly ALL THE THINGS! I’ve seen this used everywhere. Anytime a...
View ArticleHow to run code when fastboot is done rendering?
@ryanto wrote: I think I need the opposite of an initializer… When fastboot is close to done rendering I want to run some code that inspects the Ember Data store and tells me which models are in...
View Article