Async loading of routes
@jrburke wrote: Is it possible to dynamically load a route and its dependencies, perhaps just before the transition to the new route completes? My initial searches brought up info related to slow...
View ArticleBootstrap not working
@psotos wrote: Hello all! I've installed bootstrap via this project: http://indexiatech.github.io/ember-components/#/getstarted With this command: npm install --save-dev ember-cli-components and I am...
View ArticleCall action from parent component in Ember 2.x
@totomakers wrote: Hello, I am trying to call an action from a parent component in my route view. Look at Ember Twiddle Example How to call animate() from my component ? What am I doing wrong ? Posts:...
View ArticleList rendering with good performance
@cgonzalezvazque wrote: We have a view in our application that is and photo album. When we have more than 100 pictures in the list, the render is slow. Is it posible to force ember to just render...
View ArticleCustom re-render in a for-each template
@cgonzalezvazque wrote: I have a Ember component that is based in a list rendered with the for-each helper. Is a photo album. But some times pictures are added from server side and they are shown in...
View ArticleEmber 2.5.1 release is not found
@waleedq wrote: Hello, i've been trying to install the 2.5.1 release as mentioned in the releases page http://emberjs.com/builds/#/release, but it seems there is no ember tagged with 2.5.1 there is...
View ArticleTry to reload model on any ajax error
@sammy007 wrote: How I can make my app to continue poll for model every time backend fails? I already tried everything in order to achieve this behaviour, but seems I am not capable to do it properly....
View ArticleEmber addon for OnsenUI (For Mobile) and Patternfly (For Enterprise)
@kirantpatil wrote: Onsen UI: https://onsen.io/2/ Patternfly: https://www.patternfly.org/ , https://github.com/patternfly/patternfly/blob/master/QUICKSTART.md I tried to find addons for OnsenUI and...
View ArticleShow route on error anyway
@Yaroslav_Poliakov wrote: Hi all! I have route with next model: model: function model(params) { this.store.unloadAll('comment'); this.get('adapterContext').setRecipeId(params.recipe_id); return new...
View ArticleEmberCLI + Rails API
@r0uder wrote: I'm trying to get to work EmberCLI frontend app with my Rails API. For some reason it does not work. When I visit 'localhost:4200/artists' I see nothing but h1 tag. No API data. JS...
View ArticleChange model id and transitioning
@ofridagan wrote: Hi, (This may sound odd, and I'll be happy to hear a different approach for achieving what I need...) I have a route, let say /post/:post_id. In this route there is an operation to...
View ArticleWelcoming Screen instead of Blank Screen
@thelucif3r wrote: Hi guys! Sorry if this sounds silly or wastes your time. I am medical student from Cambodia with little background in programming. I am writing an Ember app to digitalize patient...
View ArticleRendering 2000+ element optimization suggestions?
@AbdullahD wrote: I have to render in my page about more than 2000 elements mostly of type "inputs" The first time I did it, PC fans starts producing load sounds and it took about 30 to 90 seconds to...
View ArticleBind input value to object in array?
@Ayoros_42 wrote: Hi, I don't understand why this works: {{input value=model.candidacy.answer_group.survey.questions.firstObject.content}} And not that: {{input...
View ArticleLost Grid with Ember
@danilovaz wrote: Someone uses Lost Grid with Ember? Lost Grid https://github.com/peterramsing/lost is a PostCSS fractional grid system built with calc() by the same guy who built Jeet. And I want to...
View ArticleHow the heck do you upload a local JS file
@Sameed_Baqai wrote: I am having an issue uploading my local js file that kinda does cookie stuff Any help? Posts: 1 Participants: 1 Read full topic
View ArticleI want to measure distance between 2 points on screen using ember.js
@ShawaizMalik wrote: I want to measure distance between 2 points on screen using ember.js. The scenario will be when i click on one point on screen it is selected as first point , and a straight line...
View ArticleRouting and linking in EmberCLI
@r0uder wrote: I have a Rails API and EmberCLI frontend app. My page shows a list of artists. Click on artist should send user on page with all albums of the artist. I need to make a link to user's...
View ArticleExtending Promise
@AbdullahD wrote: Is there a way to extend Promises. The reason is that I want to place HTTP requests promises such as find or save in a special promise to display the loading component such as...
View ArticleHow to reuse mixin instance which is already created?
@Balu wrote: I include a mixin into a route and component, it creates two different instances but I wanna use the same instance which is created in the route since I update some values over there...
View Article