Why did the Ember.Logger documentation get removed?
@RustyToms wrote: The API docs in 2.6 has documentation on Ember.Logger, https://emberjs.com/api/ember/2.6/classes/Ember.Logger , but in 2.7 it has been removed:...
View ArticleHow use web-component glimmer.js in html file with django?
@mapeveri wrote: Hi, I’m trying glimmer.js and it’s great +1, but I have a question. I have a django template that I am adding small widgets with react. How can I do this in glimmer ?. Glimmer creates...
View ArticleEmber 2, ember-cli, custom addon, hook to modify text in js before final...
@johnunclesam wrote: After this question Modify app.js and vendor.js before the final integrity seal. How to? I’m building an addon for modify the js before the final integrity step (with...
View ArticleHow to fix IE 11 String.prototype.includes error in Ember?
@Jeffrey_Cheung wrote: I am doing this in my controller/application.js: init(){ if (!String.prototype.includes) { String.prototype.includes = function(search, start) { if (typeof start !== 'number') {...
View ArticleA great job opportunity for an Ember.js expert is waiting for you! (Brisbane,...
@dg.gbst wrote: Hi everyone, But I was taking a look at this great community and felt that the current role we are looking to fill at GBST in our Brisbane, Australia office, would be of interest to...
View ArticleAcceptance testing, websocket pending hangs andThen() wating for pending to...
@johnunclesam wrote: I’m starting for the first time in Acceptance testing my Ember application. So I started from login with this: test/acceptance/login-test.js: import { test } from "qunit"; import...
View ArticleCustom asset compilation in ember.js
@bharathwaj_ravi wrote: My project structure is: myProject | - ember app | - my addon I am developing a product where I have to integrate with 3 or more products. Each integration requires only...
View ArticleHow to add css in some page only?
@vee_winch wrote: Hello, From this document ( https://guides.emberjs.com/v2.14.0/addons-and-dependencies/managing-dependencies/ ) it show me to add external js, css and “compile” into a single file...
View ArticleEmberJS Hybrid app : Click link to open another android/ios app
@alphaschumann wrote: Objective : Click a link on the EmberJS (template) page of a hybrid app and it should open another android/ios app installed on the phone. The below code is in ExpressJS. I want...
View ArticleHow to view the value of a component to another component
@mikeelemuel wrote: mikeelemuel: I have a componentfirst.js and templatefirst.hbs. I was able to view the information called {{cashBalance}} in my templatefirst.hbs. However, when I tried to view the...
View ArticleEmber install ember-cli-tutorial-style error
@HetIsJorrit wrote: Hey guys, I’m a new user of ember. but there is one problem I cannot deal with. The error is about rewriting files, but even with using administrator the error keeps popping up. I...
View ArticleCall api data in component
@mapeveri wrote: Hi everyone, I am new to ember.js and I have a question with a component. I am creating a component for infinite scroll and I need to make a call to the api. I have this code:...
View ArticleWhy use RSVP.Promise instead of ES6 Promises?
@skitterm wrote: Syntax question about promises in Ember… I was wondering why Ember uses RSVP promises instead of native ES6 promises. Some of the older posts mentioned the vices of jQuery deferred,...
View ArticleCannot delegate set('personName', s) to the 'content' property of object...
@sarmahdi wrote: I am trying my hands on ember js and I am not able to use multiple models within models, single models with string attributes are easy… model/client.js export default...
View ArticleEmber.computed -- declaring additional dependencies (for example,...
@dlindquist-egistix wrote: When using the Ember.computed helpers, there are case in which it becomes necessary to declare additional dependencies. For example, when using Ember.computed.filter: dogs:...
View ArticleHow to use Ramda on Ember?
@jgomo3 wrote: I’ve been trying to use Rambda in Ember but been unable to do it. I’ve tried installing the addons ember-cli-ramda and ember-ramda, but neither of them works well. Have anybody here...
View ArticleList view with limited columns, unlimited rows
@suryamalempati wrote: We need a way to display a list of items from model in rows and columns. We should be able to limit the columns and have the required amount of rows to display all the items. We...
View ArticleHow can I get up to speed with Ember quickly?
@Rup1 wrote: Hello! I’m a QA tester for a startup, our app is an ember app, and while it’s easy to find bugs in our software, I have yet to debug an issue and fix it myself, mostly because I do not...
View ArticleCould not find module `d3` imported
@soclips wrote: This is what I have in my package.json "ember-d3": “^0.3.4”, I have import d3 from ‘d3’; but giving me below error: Could not find module d3 imported Posts: 2 Participants: 2 Read full...
View ArticleHow to render view before API response is ready?
@krushna_ghodke wrote: Hi, I want to render my view before API response and when API response is there update same view with response. Posts: 1 Participants: 1 Read full topic
View Article