Understanding Ember's import system
@ppppaaaa wrote: I'm getting really frustrated with Ember's import system. I can't tell exactly what's going on behind the scenes and all of the ember-cli documentation just tells me how to do...
View ArticleDefault Class Name (template attribute)
@robaguilera wrote: Does Ember have a way to define a default attribute if one isn't defined? Let's say I have a component: {{#myComponent componentClass="foo" The template will have a spot for the...
View ArticleEmber-mocha: nyan reporter
@ZeBaguette wrote: Hey there, I've asked this question on Slack some time ago. I wasn't able to find succeed then, so I'm posting here in case someone has the time and ability to help in the long run....
View ArticleTrying to make findAll return multiple type of models
@Bauke wrote: In a route's model hook, I send a request to the server for all Journal models: this.store.findAll('journal'); Thing is, Journal is actually just an abstract class for anything...
View ArticleUnderstanding Ember's Server folder
@nivedhithav wrote: I am working in a project using Ember. I could see a folder as server under "application" folder. Can anyone tell me how it will work? What is the workflow following here with...
View Article(action (mut date))
@ioanszabo wrote: Hi, Here is my example:{{ui-calendar type="date" date=date onChange=(action (mut date)) placeholder="Select date"}} I saw this (action (mut date)) many times. What it does?Thanks....
View ArticleEmber Debugging + Atom
@GELight wrote: Hi there, Is there a posibillity to debug my application in the Atom IDE?It would be very cool if I not have to use the debugger in my browser. Greetings,Mario Posts: 1 Participants: 1...
View ArticleBinding query params that are arrays
@midget2000x wrote: I've been wrestling with getting QPs that are arrays like: /search?foo[]=ray&foo[]=freakin&foo[]=tiley to be properly bound to controller property arrays. I think this used...
View ArticlePassing A Promise From The Model To A Component
@ewaschenko wrote: Hi, I'm my template I'm try to pass in a property of my model to a component. {{display-notifications notifications=model.notifications}} Where model has notifications:...
View ArticleComponent with dynamic layout
@koopa wrote: I am trying to render a component with a dynamically compiled layout. Here is an example that shows nicely what I am trying to...
View ArticleDifferent dateTime depending on current environment using moment.js
@ChrizzDF wrote: Hi guys,I'm just wondering how to deal with moment.js when developing/testing. The situation:My app shows some products based on the current local time delivered by moment.js....
View ArticleWrapper div around components and routes - how to adjust css?
@gattra wrote: There is an automatically generated wrapper div around all of my routes and components. <div id="ember43" class="ember-view"> I have posted about this elsewhere and I am told that...
View ArticleEmber.computed - make property immutable
@Riz wrote: Hi all, it seems like this is something simple but im not able to find a straight forward solution to it.Any help is greatly appreciated. I have the below function which works fine.. but I...
View ArticleInspector Idea:clearly show available template vars
@DevinRhode2 wrote: I have often wondered exactly what variables and helpers are available in various templates. I know you can do {{log this}} but you are left digging through a very deep complex...
View ArticlePure css for Sass power Ember apps?
@gattra wrote: I am using sass for my ember project but I would like to integrate Pure CSS. Anyone know of any addons that accomplish this? Posts: 1 Participants: 1 Read full topic
View ArticleWhat are the rules for using jquery to manipulate the DOM?
@midget2000x wrote: I'm having a really hard time with this one. Something that used to be very simple is taking me ages to figure out. I know it's because I haven't gotten over the hump with ember...
View ArticleHow to update a belongTo relation of a model?
@sim085 wrote: Hello, I was wondering how can I update the a belongTo relation of a model? Imagine a User and a Comment model. User hasMany Comment and a Comment belongsTo a User. The administrator...
View ArticleRealtime Ember with Rails API (RethinkDB) backend
@askar wrote: Hello! For testing purposes I wrote backend and front end just to list up tasks: Rails5 API server https://github.com/tenzan/rails-todo-api . Ember frontend...
View ArticleReload model $.ajax
@ioanszabo wrote: Hi, I have the following schema:- routes: 1) reports route (parent) 2) actual report route (child) contorllers: 1) reports controller (this handles the report fields - so from here I...
View ArticleEmber not render my #each loop
@dimavel wrote: Please help, i dont understand why its not working? My html: <script type="text/x-handlebars" data-template-name="application"> <div class="header"> <div...
View Article