How render ember.js app in the server with django?
@mapeveri wrote: Hi everyone, I'm new ember. How i can render ember.js app in the server with django? Is possible? Thanks Posts: 3 Participants: 2 Read full topic
View ArticleDynamic components help
@jeremytm wrote: Say I have a sports game, and within the game is a messaging system where we receive a message string like so: Hi there, I just purchased a new player <player id=1234>. Let me...
View ArticleUnversion environment.js for Git
@ZeBaguette wrote: Hey there, it's my first post here so feel free to tell me if I'm posting in the wrong section. I haven't found discussions on that point, so here I go: why is environment.js...
View ArticleEmber controller - what is it?
@jobsboris27 wrote: I came in a new project, where people using Ember - 2.4.5 I worked in previous jobs in react. How you are using controller, what is that? Guide in official site Ember generates...
View ArticleBuild without Broccoli
@danilovaz wrote: I know my question may be stupid. But I have to ask. I'm working on a project with version 2.5.0 Ember and Ember-cli version 2.4.3. And in this project I am using some things like:...
View ArticleObtaining related (Ember) data within a component
@therealbenhogan wrote: Hi, I have a model with a many to many relationship eg products and categories. In my category model I have this export default DS.Model.extend({ name: DS.attr('string'),...
View ArticleObserver in component not triggered by injected property change
@Soulou wrote: Hi there, I've a problem building a trigger, reset relationship between two components. Parent trigger action by toggling property, child component detect the change and send an action...
View ArticleComponent testing involving CSS transitions
@accelerate wrote: I'm using ember-semantic-ui, and I have a component that uses that library's dropdown component. I want to test that if the user clicks on an icon, the menu opens properly. And this...
View ArticleHow do I use ember-cli with the LTS release channel?
@remkoboschker wrote: Hi, I would like to update an addon to the long term support release channel using ember-cli. How do I do this? Posts: 2 Participants: 1 Read full topic
View ArticleA belongsTo child model from parent model using get method is not of DS.Model...
@Santosh_Pandey wrote: Hi, I am trying to access a related(belongsTo) model from the parent model. the structure is as below employee= DS.Model.extend({ serialNo: DS.attr('number'), name:...
View ArticleEmberJS - Relationship not remotly pushed
@Charles_Bourasseau wrote: I have two model with a one to one relation. I only need one direction of the relationship. App.A = DS.Model.extend({ b: DS.belongsTo('b', { async: true }), }); App.B =...
View ArticleBest practice: when to use components, partials or templates
@Adhamh wrote: Hi, We are looking for guidance on best practices. We would like to have a better understanding of when to use a template, a partial or a component. For instance if our template doesn't...
View ArticleWhat is the meaning of @private in the API source code?
@LozJackson wrote: In the case of javascript frameworks like Ember.. and the ember addons available.. What is the meaning of @private in the API source code? ...does it mean the property/method is...
View ArticleJQuery error running basic example for ember-cli-ember-table
@onezeno wrote: I'm trying to run the basic ember table example and I get this error: header-row.js:31 Uncaught TypeError: Cannot read property 'scrollLeft' of undefined The line of code that throws...
View ArticleDependency injection and subclassing
@Gilgalas wrote: Hello, Today I was working on converting a single class into a series of subclasses that share some common behavior, then I encountered an issue with injected dependencies that seems...
View ArticleComponent with custom string as template?
@Kilowhisky wrote: I would like to store SVG images for my application in my API and have them delivered via API. This way i can have users create custom icons. The thing is that my SVG images need...
View ArticleConditionals in templates
@Ben_Glancy wrote: When I have something in my HBS file that looks like this: {{#if IsCustomerFormBeingShown}} Hi my form is shown!! {{else}} Oh no my form is not being shown!! {{/if}} Where does that...
View ArticleHow to highlight code in hbs files?
@lcristianiim wrote: Hello. I want to introduce into my project some code to be highlighted on certain pages (like index.hbs) I've searched for libraries that can do this and found tools like...
View ArticlePorting MobX ideas to Ember.js - dependency-less properties?
@drogus wrote: Recently I've read a lot about a new observable library written initially for ReactJS. From what I see on the surface it doesn't differ from what Ember.js offers a lot apart from one...
View ArticleGoogle doesn't render Ember app
@Yaroslav_Poliakov wrote: Hi all! I have tested my app by "Fetch as Google" and got empty page: https://gyazo.com/2b28487ac1a25e11e2e87888779e3f2a. Evidently google crawler thinks that there is just...
View Article