Develop, deploy, and dynamicallly load component "plug ins"
@ssirowy1 wrote: We have a desire to build components that plug into our main application, also an Ember application. Currently we build all these components in an addon, and then include that addon...
View ArticleToolset concept for a offline client based website with ember, handlebars and
@Snatch wrote: Hi ember community, I need help to setup a client-side offline toolset to realize a responsive learning platform based on a website-application. Requirements • run in a webbrowser (has...
View ArticleShare a data-loading component between multiple pages
@Guillaume wrote: Greetings, I would like to create a reusable component that loads data asynchroneously. For example, I have my blog page, and on the right side a sidebar with a list of item...
View ArticleQunit assert throws not working
@Robin_Bajaj wrote: I am trying to assert that a few steps in the code (visiting page, providing wrong card-number, password combination and clicking submit)should generate an error from the backend...
View ArticleCreating charts in Ember.JS
@char wrote: A detailed tutorial to create stunning charts in Ember.JS codementor.io How to create charts in Ember.JS web application | Codementor A detailed tutorial on how to create charts in...
View ArticleEvents (evented) with before/after transitionTo
@GELight wrote: Hi all, I use Ember.Evented to use the Ember event bus. Now we have the problem, that a published event is only available for initialized and rendered components. const customers =...
View ArticleConvert JSON Object to Internal Model
@mapeveri wrote: Hi everyone!. I have this problem: From websocket i received one object json and need add this object to model. let objWs = { "data": { "id": 1, "type": "notifications", "attributes":...
View ArticleEmber.get with nested properties: best practices
@ramen07 wrote: I just upgraded one of my applications using the instructions found here. I use the pattern this.get("someService.propertyHolder.someProperty") frequently, so I was somewhat surprised...
View ArticleEmberFire Sorting Posts
@bw70316 wrote: I asked this on stack overflow and it didn’t get any traction, so I’m turning to here. I am trying to post my blogs in order from more recent to last. I am able to sort by title and...
View ArticleAssertion Failed: You need to pass a model name to the store's modelFactoryFor
@kamillacrozara wrote: Hey there! I have these models that has belongsTo relationships: //app/models/primary.js export default DS.Model.extend(Validations, { number: DS.attr('string'), protocolDate:...
View ArticleEmber.js expert with Wordpress experience required
@John_marcel wrote: Greetings! We are in need of an Ember.js guru to setup Addepar Ember table -> http://opensource.addepar.com/ember-table to to render a table with data(similar to dataTables)...
View ArticleDecimal Numbers math operations accuracy
@greyhwndz wrote: Is there a way or perhaps an addon to ensure that math operations on decimals are avoiding the problems/intricacies of javascript with regards to decimals? Posts: 1 Participants: 1...
View ArticleNeed to ask about model relationship
@rzky wrote: Hi, anyone mind taking a look at this model relationship? So i have an database of articles defined with a post and author model. Each article belongs to a single author, but will also...
View ArticleAction Performed in any case! (without event from the templates)
@emiliogambone wrote: Hi Everyone! I’m wondering if I can perform an action of the controller from my template, without a button or without any triggering event. I just want that when i pass to this...
View ArticleConcerns about ember performance (ember-data in particular)
@JBT wrote: My team launched a new Ember app. Unfortunately, the performance was poor. One senior engineer from Ember infrastructure team in the company mentioned that we could improve the performance...
View ArticleAssertion Failed: You can no longer pass a modelClass as the first argument...
@kamillacrozara wrote: I have the following models: //app/models/primary.js export default DS.Model.extend(Validations, { number: DS.attr('string'), protocolDate: DS.attr('date'), document:...
View ArticleHow you guys manage create or edit data with one component
@Zorig wrote: Hi guys, I have been wondering if my approach is right or wrong. I got one component for editing and creating. Eg: place-form component. So in order to edit i pass isUpdate prop to...
View ArticleTime Tested, Maintainable way of Handling Translations?
@mtangoo wrote: Hi, Long time since I posted. I plan to use Emberjs in my next project that should be multilingual. I have no problem translating things in the API but as the API should not bother...
View ArticleCan i call javascript code to close window from Ember button or link
@leofoto123 wrote: Sorry javascript/ember noob question, I have an Ember page with a link and a button. Is it possible when i click on either of them to call javascript code to close the browser tab...
View ArticleCan i go to an external link on a button click in ember
@leofoto123 wrote: is it possible to call an action on a button click which navigates the user to an external link (like bbc.com for example). I thought the transitionTo will only know the routes...
View Article