Transition to a route after confimation
@harold wrote: I just started learning ember and i face this scenario: In my edit page, I want to navigate away from it (i.e clicking a link on the menu) but by doing so a pop up dialog will show to...
View ArticleExtra model attributes for a table data source from API
@Joshua_Jenkins wrote: I’m using ember-models-table which takes in a model as the data source for the table. The model is being updated live with a websocket. I have extra attributes I want to add for...
View ArticleUpdating models with websocket service
@Joshua_Jenkins wrote: Currently I’m subscribing to a websocket subscription in setupController which adds a subscription handler that updates the model. I figured it should be in a service so it can...
View ArticleReceive and handle post request
@Kuro_Kutaku wrote: Hello community, I’m new to ember, I learnt ember by following some tutorials and build some basic apps. Now I’m working on an emberjs app which will receive post request from an...
View ArticleBest library for UI implementation
@GELight wrote: Hi all, We works on a application for support agents like a contact center app. At start of our work we had written 2 little prototypes … one with bootstrap 4 and one with ember paper....
View ArticleCached computed property in component
@Joshua_Jenkins wrote: I don’t think I’ve done one thing in Ember yet without being tripped up by something. It’s honestly maddening. Today it’s a table component that I have that keeps caching a...
View ArticleHow can component share the computed property data back with the controller
@leofoto123 wrote: hi there i have a component and a controller. All the properties live in the controller and are passed to the component like the following {{component-name property=property }} now...
View ArticleHow to use mongodb from ember acceptance test?
@yassyass03 wrote: Hello, I use ember mocha for testing, and I don’t know why I can’t use the package npm mongodb from my acceptance test. In my acceptance test I import : ` import mongodb from...
View ArticleIn Repo Addon - Cannot import on app.js
@danielburkewilliams wrote: Good Morning everyone, I’ve been working with ember for about two months and am stuck with the in-repo addon. This is my first time with addon’s in general. I’ve created...
View ArticleManipulating graphics in Ember
@hectorsq wrote: In the Ember app I am working on I want to implement this functionality: The following image appears in the screen and the doctor marks the regions where the patient has injuries. I...
View ArticleLoading data relative to a relation modify the relation[solved]
@bsylvain wrote: EDIT : Sorry, the problem did not originate from ember. In the same model hook I display a relation for a model, and I also want to display the data available to add as a relation :...
View ArticleGood demo app using ember-paper
@etewiah wrote: Has anyone come across some examples of open source projects that use ember-paper? Posts: 1 Participants: 1 Read full topic
View ArticleUsing ember-keyboard with ember-paper
@GELight wrote: Hi, We using ember-paper for our UI and currently I search an good addon to use keyboard shortcuts. Therefore I test the addon “ember-keyboard” (...
View ArticleDevelop Office Add-in with Ember
@nanoart wrote: It is possible to develop Office Addin with Ember, accord to https://dev.office.com/docs/add-ins/word/word-add-ins-programming-overview?product=word. So far, there is not a working...
View ArticleMixed Content: The page was loaded over HTTPS, but requested an insecure...
@kamillacrozara wrote: Hey there! I’m trying to pull data from an API that I have already enabled CORS. It’s enabled to all endpoints. But when I try to pull data I’m getting this error: Mixed...
View ArticleHow to recompute a Helper when a Model is loaded
@simonc wrote: Hi, I’m using ember-i18n in my application and my models have properties like nameEn and nameFr. To provide a generic way to access the name in the current locale, I created a helper to...
View ArticlePossible to use custom file structure & file naming?
@nima wrote: I want to use the following file structure and file naming: /app /components /some-component component.some-component.template.hbs component.some-component.class.js /routes /some-route...
View ArticleAcceptance tests and Travis CI
@marxsk wrote: I have started to write acceptance tests for my web project (with ember-cli-mirage). As they were working correctly, I have setup Travis. And I find an issue that I can’t understand....
View ArticleNeed help with Google Maps Autocomplete
@BillyBlumpkin wrote: I am having users submit a form. I would like to use Google autocomplete for a location field. I installed ember-cli-gmaps. Here is the documentation:...
View ArticleBelongs to relation
@GELight wrote: Hi all, In a standard belongsTo relation ember will use the “id” from the response of the parent request to call the defined belongsTo request, right? This is my current use case....
View Article