Dereferencing/Destructuring Ember Global... Best Practice?
@OakBehringer wrote: In regards to preparing for a world without the Ember global, which would be considered "the right way" to do this? import Ember from 'ember'; const { computed } = Ember; const {...
View ArticleEmberJS with JavaEE
@nullnillzero wrote: Is anyone aware of a decent way to integrate EmberJS with JavaEE applications? Specifically speaking I have a set of Java beans that I need to access. Posts: 1 Participants: 1...
View ArticleRendering a separate template based on model property
@OakBehringer wrote: I have a model with a status attribute that dictates a significant change in the view (i.e., almost everythign changes). Instead of having a single view template with all of the...
View ArticleDo I have to mess up html tags if I want to use 'ember-bootstrap'?
@Woosung_Chu wrote: I am new in ember js and trying to add navbar index page with bootstrap.While I search any notice before I use bootstrap into ember application, I found disgusting...
View ArticleWhy I see these this error? (trumbowyg wysiwyg)
@artZzz wrote: Hi guys! Somebody knows why I see error: Снимок экрана 2017-01-18 в 17.14.06.png1433x135 35.8 KB I see this error each time when I press button or typing text in trumbowyg editor. Why?...
View ArticleOut of memory error building on CircleCi
@ToddSmithSalter wrote: I'm building an EmberJS project in a CircleCI Trusty box with Phantom 2.1.1. I've recently updated ember-cli to 2.10.0 and emberjs to 2.8. Locally, it builds just fine, with...
View ArticleGetting Started, dist, 404
@Sinrise wrote: I'm new to Ember so I started with the tutorial on the emberjs website. Everything went perfectly in development. I added two routes, per the getting started tutorial. I did ' ember...
View ArticleEmber Data, memory, and unloading records
@dknutsen wrote: So my colleague was looking into this last week and hit the slack channel and github but we didn't really get anywhere so I'm going to try again. Sorry for the length but I want to be...
View ArticleHelp me understand Ember data flow
@Marcus_Geduld wrote: I'm new to Ember, but I've used other frameworks for years (React, Angular, Backbone...) I'm enjoying this new experience, but I get continually stymied by small details when...
View ArticleOptimize by Render Performance Inspector
@jobsboris27 wrote: Hi there! How do you optimize render?Now, my app is loaded about 350 ms, but in mobile devices, I watch a white screen(my app is loaded and ready to work), and then after one...
View ArticleHow does ember-cli-build.js work?
@Sinrise wrote: This may seem like a stupid question, and I am familiar with how bundling works. Seems pretty straightforward but for some reason it's not working for me. I have a simple JS file that...
View ArticleCan ember data handle huge amount of records from API?
@PasinduDineth wrote: Hi all, i am new to ember js and we are going to do a project using ember js. As far as i can understand, ember data store is storing ALL the data from API. We have more than...
View ArticleHow can I retreive the --proxy value within ember?
@branscha wrote: I would like to get this value in my ember services so that I can adjust the ajax URL's myself. I don't have a clue where I could find this value, it must be stored somewhere. Posts:...
View ArticleStruggling to understand models - question about Adolfo's ember 101 book
@tchan28 wrote: I'm quite early on in around pages 29. How does the index.js Route in the subdirectory friends access friend.js in the models folder? And how does it then get the data from...
View ArticleBest architecture for music app so that state is preserved between route...
@gattra wrote: I'm building a music app and I want the music to continue to play in between route transitions. The best way I can think to do this is to have a master route that holds the music player...
View ArticleFolder Tree Widget/Component Recommendation
@blainelang wrote: I am working on a new document management application using Ember and have not been able to find a good solution to provide a folder tree component that works with Ember 2.0 and...
View ArticleHttp and/or Https
@TimXrm wrote: Can you set it so you can use either http or https? I know you can set ember cli ssl to true but you can only use https. Fyi, I am using IIS 7.5 Tim Posts: 1 Participants: 1 Read full...
View ArticleEmber is hanging
@JDouglasHall wrote: I’m having difficulties with ember hanging. Here's my situation.• I’m running Mac OS 10.10.5, and homebrew package management.• >brew doctor ---> Your system is ready to...
View ArticleSomething like a public function in a component
@pat123456 wrote: Hi, I've a component "player-video" like that (there are some other things in it, that why it's a component) : video-player.hbs<video src="{{src}}" ></video> and I want...
View ArticleComputed in #each only trigger once
@adsl99801 wrote: controller: pagesize: 10, page: 1, list: Ember.computed('page', 'pagesize', 'list', function() {// http request get new list mList by page and pagesize this.set('list', mList); }...
View Article