Senior Software Engineer (San Jose, CA) - In the cannabis space
@trobrock wrote: We are looking for some great software engineers to join our team either full-time or on a contract basis. We are located in downtown San Jose and are working on a ton of interesting...
View ArticleEmber recaptcha
@alice wrote: i m using ember cli recaptcha in my ember app. i want to reset the recaptcha once my modal is closed. here is my code ----> > close:function(){ >...
View ArticleNeed to change CSS Property
@parekhpiya2002 wrote: Hello All, I am using Bubble Chart D3 v4 component. I need to change CSS portion with the scenario said below, I have list of data in bubbles format.When one hover on bubble,...
View ArticleEmber-cli-mirage generate data for relationships
@mrjerome wrote: I'm having a hard time figuring out how to generate seed data for a relationship. I have a forum model which hasMany posts. Is it possible in my scenario file to generate 5 forums...
View ArticleInjecting a configuration object
@damianocastro wrote: Hi all, I would like to access a configuration object that is read-only and consumed by all the instances of our ember app in a particular deployment. This configuration object...
View ArticleTutorial or material to get started with AWS
@amandaBrito wrote: Hello, I'm starting using Ember and in my app I'd like to connect with my AWS account and use its services. I downloaded the AWS SDK for Javascript and tried to use it following...
View ArticleParsing a json object in a route
@emanuk wrote: ember-cli: 2.13.2 node: 7.8.0 Hello, I'm a newbie at ember and I want to do something that looks super simple, but I can't find the right way. I have this code in...
View ArticleBeginner trying to make collapsible Components
@ericDUFL wrote: I am trying to make components collapse very similar to accordion style found in ember-accordion package. I am working on Ember 1.13 and wasn't able to get the ember-accordion package...
View ArticleIs there a way to check if some record exists before I create a new one?
@komi94 wrote: Before I give any snippets of code, I want to explain the task that I have to implement. First of all, every class has many subjects and every class has many students. Every subject and...
View ArticleWhat happens when ember's model hook's request fails
@Prabhakar wrote: I have a typical scenario. My model hook for Route-1 looks something like this. model() { return Ember.RSVP.hash({ allProjects: this.store.findAll('post'), allUsers:...
View ArticleEmber create classes
@ioanszabo wrote: Hi, Normally when I create a service, that service is a singleton. But how I declare a 'class' and make instances of it? And where do I put them? For example, I want to create three...
View ArticlePerformances using plugin like ember-truth-helpers instead of just the Ember...
@johnunclesam wrote: If I use this plugin: https://github.com/jmurphyau/ember-truth-helpers with many, let's say, {{#if (eq model.beautiful true) }} or {{#if (or (eq model.beautiful true) (eq...
View ArticleNot filterBy properly;
@komi94 wrote: First of all, every class has many subjects and every class has many students. Every subject and student belongs to one class. Also, every subject and student has many grades. But one...
View ArticleAccess hasMany by Id in a template
@milk242 wrote: So I have a model defined as: properties: DS.hasMany('property') Is it possible to access the properties by the id of the property? I'm thinking in my controller I can create something...
View ArticleFailed to test my component with Fancybox
@Jeffrey_Cheung wrote: Hi guys, I am learning how to test but I failed. I want to make sure when a user click a button the fancybox open. Here is what I tried: //test import { moduleForComponent, test...
View ArticlePromise pending to disable buttons is not working
@johnunclesam wrote: I have a Categories route with a categories list of course. When I click on one of them the category route is entered and then the model() of this route which loads items and...
View ArticleAlways getting not null object even though there are no objects with these...
@komi94 wrote: I always get that object that I am returning is not null. My goal here is that when grades.get(‘firstObject’) === null to create new object. Its like it returns the object that exists...
View ArticleJSONAPI Serializer and hasMany saving
@milk242 wrote: Hi All, If I have a model like this: View Model: DS.Model.extend({ properties: DS.hasMany('property') }) Property Model: DS.Model.extend({ value: DS.attr('string'), view:...
View ArticleUnit test on component is not working when it has mixin
@Jeffrey_Cheung wrote: I am trying to test my component with unit test to see if every computed property works. Here is my component date-navigation-bar with a mixin called time-nav import Ember from...
View ArticleWhat are the drawbacks if component does not have a wrapper? If tagName === ""
@Enterpub wrote: Hi everyone, does anyone know are there any drawbacks if component does not have a wrapper? If tagName === "". The code for component would be: import Ember from "ember"; export...
View Article