How can I load seed data for my app?
@andrew1 wrote: Hi everyone, We have some constant data that we need to load from the server once when our Ember app boots. This is basic stuff like the copy for our error messages, etc... The reason...
View ArticleUse ember app as sub url or sub domain
@stephencheng wrote: I am a new to ember js and I'd like to come up with a very simple app to: A) serve at a sub url leve or www.mydomain.com/mysuperemberapp/post/new mysuperemberapp -> root url of...
View ArticleThrow exceptions and handle them locally and globally
@alexmngn wrote: Hi there, I am currently building an app and I am wondering what would be the best approach to catches the errors locally and globally. Example of a local error handling: The user...
View ArticleModel data containing template strings
@aronbeal wrote: Hi all. I'm bringing this question here (asked once before slightly differently on StackOverflow) because I'm looking for guidance on what others do when they encounter this sort of...
View ArticleIssues with ember 2.3.0-beta.2 and bootstrap JS: Navbar & Carousel
@ajinkya-apte wrote: Hello, 1. I created an ember project recently using ember-cli. My environment is as follows: $ ember -v version: 2.3.0-beta.2 node: 4.1.1 npm: 2.14.10 os: darwin x64 2. I...
View ArticleHowto get hasMany data loaded in a nested route from a custom API server
@Rick_Meertens wrote: Hello guys, I tried different solutions/hacks(which I will list here) to load data from a hasMany relationship and view it in a nested route.(/posts/{post_id}/comments) I'am...
View ArticleCan't upgrade ember-cli
@ayb wrote: I've been fighting with ember-cli for hours now just trying to upgrade ember from default of 1.13.15 to 2.3.0 Following the directions I found on GitHub and the site but my system just...
View ArticleUpgrade to 2.2.3 now have helper problem
@iamalex wrote: Getting error: "Uncaught Error: Assertion Failed: A helper named 'select' could not be found" Trying to upgrade from older version. Have an action: viewForm() { return...
View ArticleGuidelines for upgrading to Emberjs 2.x
@kgish wrote: Is there some kind of official step-by-step guideline available for how to upgrade from ember 1.x to ember 2.x? I've got a well-tested and pretty stable application running which is...
View ArticlePassing property from action to index.hbs template
@Stijn_Aerts wrote: I have this code in my index.hbs file: <button {{action 'showHotspots'}} class="btn btn-success padding">{{hotspotCategory.name}}</button> I have the showHotspots...
View Article5 best Ember 2 Add-ons when starting a new website
@artsmc88 wrote: I have built a few web projects in ember and at this point I have a few go to add-ons that just get added to my projects by default. So I'm curious about others top 10 or even top 5...
View ArticleUpdating hasMany with relationship and saving belongsTo
@Marcelo_Alves1 wrote: Guys, i have this two models: Event.js: export default Model.extend({ checked : attr({ defaultValue: false }), isActive : attr(), createdAt : attr(), updatedAt : attr(), start :...
View ArticleEmber JS with Rails API
@danilovaz wrote: Hi folks. can you help me? In the company where I work, we have a project that currently both the back end and the front-end are in Rails. Of course, we realize that this structure...
View ArticleEmber remove route command
@harimath wrote: Are there any Ember-CLI commands to remove/delete generated routes (or even models, controllers,component, etc) i.e. the opposite action of ember generate Posts: 2 Participants: 2...
View ArticlePrevent destroying component on route change
@shaunb wrote: I have a component that is very expensive to render. It's a map, and I draw thousands of data points on it, which can take a few seconds. When I leave the page (move to a new route) and...
View ArticleBest way do use Google Maps API in Ember
@MarcManhart wrote: Im wonderin what is the best way (based on your experiences) to use GMaps in your projects. My current (working) approach is to load the gmaps-script in the index.html like this:...
View ArticleEmber input autofocus component . Any Idea?
@vinothwindows47 wrote: I want ember input autofocus component. Do you have any idea ? Posts: 2 Participants: 2 Read full topic
View ArticleAccess Ember scope from console
@blargity wrote: Hi Everyone, I'm completely new to Ember, but am building a chrome extension that builds features on top of an Ember app. What we keep struggling with is how to access anything from...
View ArticleHow can I output an automatic timer using Handlebars?
@Rinchen wrote: I've made a function which works as a timer and executes every second. When I console log the output of the function, it works fine, but it doesn't update graphically. This is my code:...
View ArticleBuild custom app directory with Ember CLI
@cinkonaap wrote: Hey, I am struggling using Ember-CLI. I want to add extra directory to app directory (for example "behaviours"). But this directory is not included in build using Ember-CLI. Is there...
View Article