Newbie questions about developing a CMS Front-end with Ember
@Roger wrote: Hi there , I'm an old school c++ developer , i did developed and maintained several internal content management systems ( not web based ) for organizations in my country for past decade...
View ArticleCan someone explain Ember's dependency manager?
@tsteuwer wrote: When going through the dependency management for addons, how does ember handle things which have the same dependency but different versions? Say for instance: App- Dependencies--...
View ArticleInteraction with component itself and testing
@teejay wrote: Hello there. I have a seemingly simple question about the test of a user interaction on a components. Imagine you have the following component. import Ember from 'ember' export default...
View ArticleSending action to child component in a component block Ember 1.13
@fasih wrote: On Ember 1.13, I'm converting Views into Components. I have a form component thats template looks like the following: InputFormComponent: <form {{action "submit" on="submit"}}>...
View ArticleHow to pass parent route property to child route to be used in as parameter...
@Ram123 wrote: I am beginner in Ember.js. Here is the problem I am facingSimple parent-child routes without any params is setup. Trying to avoid child route query parameters as they show up in...
View ArticleList or reserved keywords in Ember
@Kondrat_Shmoylov wrote: Hi all Is there any known list or reserved keywords to use in namming variables for Ember components? I have struggled recently with passing variable named 'context' into...
View ArticleAny ideas on how to handle a route model with multiple separate data sources...
@Degree wrote: We have a page where there are multiple data set that are populated with different API's that are not related. We are using ember data. Some call's are slow, some a very fast. We want...
View ArticleCustomized ember-cli output (new projects)
@robaguilera wrote: I'm new to the Ember community so forgive me, if my questions seem naive or has been answered before. Is there any way to customize the output of the command ember new application?...
View ArticleTemplates for component add-ons
@MarkMThomson wrote: The guide for creating addons is clear about where a component's javascript should go (addon/components/my-component.js) and how to import that to the consuming app via...
View ArticleWhat is a correct way to use jQuery plugins which manipulate DOM on every...
@Senthe wrote: There are multiple jQuery plugins which parse entire page content and manipulate DOM onload, for example Materialize. They work fine on first page load but break when another route...
View ArticleHow to set a belongsTo field to null
@konrad wrote: I can't set a property thats defined as a 'belongsTo' field to null. The property simply keeps the value it had before. How can I do that? ASAP Posts: 3 Participants: 2 Read full topic
View ArticleThis.set("prop", value) doesn't trigger a view change - but the prop does change
@frsechet wrote: Hi there, I have the following logic in a component: import Ember from 'ember'; export default Ember.Component.extend({ selectedCats: [], actions: { selectCategory: function(category)...
View ArticleEmber-ajax and retry
@accelerate wrote: In our app, we're using ember-ajax both as integrated with Ember Data and as a service. However, our API backend is currently rather flaky, returning 500's maybe 20% of the time....
View ArticleQuick Ember tutorial
@ember1 wrote: I am just starting with Ember and tried the quickstart tutorial. I just can't get it to work when I deploy the dist folder to my website. I have tried it twice now and it just won't...
View ArticleEditing installed Ember Addon
@itsmanojb wrote: Hello, I'm using ember-cli-materalize for my project. I want to know if I can edit the addons for my usage. For example, say the component md-navbar , which has no provision of...
View ArticleShould Ember and Rails Be Coupled?
@Harun_Tuncay wrote: Hi guys.I have been learning rails for some time now.And i would consider myself as an intermediate(ish) dev.Although i've never worked on a real project, (because in Turkey,...
View ArticleAPI first Cloud CMS that plays nicely with Ember
@sheriffderek wrote: Has anyone had any good experiences with a API-first Cloud CMS that plays nicely with Ember? I was hoping to build out a project with https://prismic.io or https://cosmicjs.com to...
View ArticleAm I Ready To Apply for a Job? (sorry for if out of topic)
@Harun_Tuncay wrote: Hi guys.I have been learning ember for sometime. And i've learned CRUD, Associations, Ember-Fire hosting and how to connect to Rails back-end API. The reason i say Rails API, is...
View ArticleHow to pass parameters from one component to another component?
@sudeep wrote: I have "column-preview" component which contains list of columns with checkbox. I have another component "grid" which contains data table. Now depending upon checks in "column-preview"...
View ArticleHow can I get moduleFor() to resolve a custom factory registered with the...
@skaterdav85 wrote: How can I get moduleFor() to resolve a custom factory registered with the container in an initializer? I'd like to create a custom class, app/validations/user that gets resolved...
View Article