Ember-cli-materialize
@benhunt29 wrote: Alright, I'm about to pull my hair out here trying to get ember-cli-materialize to work. I cannot for the life of me seem to get the icons to display. I've tried importing the...
View ArticlefindRecord with streaming data
@jonesetc wrote: I have an adapter and serializer set up to stream data over a websocket. The general idea is that when store.findAll('model-name') is called, a web socket is connected, and data is...
View ArticleBest use case for helpers, when should we use it and when should we avoid it?
@Deewendra wrote: Hi folks, I wanted to get your wisdom on the best use case for helpers - what is the golden rule for when we should be creating helpers vs when we should be avoiding it? Personally I...
View ArticleDisabling keyboard auto scroll
@JordanRDesigns wrote: Has anyone here had any luck in their ember apps with disabling the auto scroll to a focused input that happens on iphones? I've been trying things for a while now and nothing I...
View ArticleRemove wrapper ember view divs
@danilovaz wrote: Is an better practice remove all wrapper ember views generateds in my components? What is impact? Like this: export default Ember.Component.extend({ tagName: '' }); I'm asking for...
View ArticleSpecify node.js debug port
@konrad wrote: To use node.js remote debugging, I could set a debug port to 8001 when starting the server with node --debug=8001 app.js. How can I do this using ember-cli? Thanks in advance. Posts: 2...
View ArticleBuilding a News Feed with Ember Data
@benking wrote: So I'm somewhat new to Ember and I'm looking to build a sort of social network app. I've managed to get Ember Data syncing up with my API (written to conform to JSON-API). Looking up...
View ArticleWhat is the the point of the route url segments?
@Ben_Glancy wrote: HI, I am relatively new to Ember, but have done a few tasks with it enough to gather some questions. One thing I am slightly at ends about is the url segments/router stuff. I can't...
View ArticleFastest way of starting an ember project?
@TonyLe wrote: I am just getting started with ember and it is a bit refreshing. It is great to get started by typing ember init, ember s, ember g route and see the effects of your changes instantly....
View ArticleHow do I handle broken belongTo relationships?
@xwingz wrote: Due to a bug in our API server, Ember Data is creating records that doesn't exist. It's a bit difficult to explain, so I'll provide an example. Let's say we have these models....
View ArticleButton to Parse Children
@goodoldneon777 wrote: I have a sidebar component that contains multiple child components. When the user clicks the submit button, I want to generate a JS object in the sidebar component that contains...
View ArticleRemove a component
@Deepak_Negi_Sunny wrote: Dear Member, I have a doubt, I have a component which I render and remove from UI using an if condition as follows: {{#if isShowComponent}} {{my-component model=model}}...
View ArticleEmber Adapter does not call serializer when call to a backend API fails
@ajinkya-apte wrote: I am using a 'JSONAPIAdapter' and have my own serializer. When a call to my backend succeeds the serializers 'normalizeResponse' gets called correctly. However if a call fails the...
View ArticleProblems settign up Google Analytics
@DaveEveritt wrote: I used this Ember guide (this forum won't allow me to post the actual URL!!) guides.emberjs.com/v1.10.0/cookbook/helpers_and_components/adding_google_analytics_tracking/ and am...
View ArticleWhich property bothers Ember.Observer
@Deepak_Negi_Sunny wrote: Dear Members, I have an observer, observing 7 properties. I works perfectly without error. I want to ask that is there any method or way to know which property out of those 7...
View ArticleTriggering a component action on route change - a relative newbie's confusion
@jb_jb wrote: Hi all, I'm a few weeks into playing with Ember, coming from a server-side MVC background. I've done my best to use newer Ember 2 conventions, to break up my UI into reusable isolated...
View ArticleUpdating to Ember 2.x application.lookup is not a function
@yoshie wrote: So I finally bit the bullet to update our production Ember app from 1.13.9 to 2.X and I'm already running into issues. Looking into the deprecation list, I changed out all my...
View ArticleImplementing a master/detail responsive layout similar to many native apps
@bgentry wrote: Hi there, I'm trying to build an Ember app that works well at many different screen sizes. The layout I'm trying to create is a master-detail layout that is very common on iOS and...
View ArticleHow to set the context of a component?
@Charles_Bourasseau wrote: I found on this page a great example of https://github.com/emberjs/ember.js/issues/11043 how to inherits from a component. Here is the example:...
View ArticleEmber-Cli build, vender and app.css override
@haavard wrote: Hi, When I build ember with "ember build --environment=production" Bootstrap in the bower folder overrides my style in app.css With "ember server --proxy**" Bootstrap in app.css...
View Article