Ember JSONAPI resource custom relationship
@fatbotdesigns wrote: Good day, I have an Ember App that uses the ember-jsonapi-resource addon, with an RoR backend that uses a gem for json api resource server. Now I have two models that are related...
View ArticleIs it possible to make Ember respond to `/app` when rootUrl is `/app/`?
@rusanu wrote: In a Rails app with ember-cli, after login I'm redirecting to /app. Unfortunately the ember app raises assert in getHistoryPath (from detect()): _emberMetalDebug.assert('Path ' + path +...
View ArticleIs it possible to render handlebars in content which is produced using markdown?
@therealbenhogan wrote: Hi, I'm trying out the markdown addon, and want to generate links using the link-to component or the ember-href-to add on. Assuming you had content from the admin entered like...
View ArticleSteps required for Ember-cli to support ES6 Object.assign()
@nagkumar wrote: How to change ember-cli build to transpile all Object.assign() call with poly fills On IE 11, we see this error SCRIPT438: Object doesn't support property or method 'assign' Our ember...
View ArticleHow do I enable Angle Bracket Components?
@dunnkers wrote: Hello Community, I've been searching for a while now on how to enable Angle Bracket Components in my newly generated Ember 2.4.1 project, but I haven't managed to find how. Can anyone...
View ArticleAny known issues with bind-attr for two/oneway binding
@nagkumar wrote: We are using checkbox button through CSS bind-attr as below <button {{bind-attr class=":btn :btn-sm :btn-link :btn-checkbox model.choose:active"}} {{action 'toggleChoose'...
View ArticleEmber-selectize dropdown is clipped when continer div has overflow attribute...
@nagkumar wrote: We are seeing ember-selectize dropdown is clipped (dropdown is hidden) if ember-selectize is used within another container div, with style="overflow: auto". Same works fine if the...
View ArticledestroyRecord is not a function
@Ayoros_42 wrote: Hello, I have two models: campaign: import DS from 'ember-data'; export default DS.Model.extend({ name: DS.attr('string'), address: DS.belongsTo('address') }); address: import DS...
View ArticleLoading dynamically generated images
@accelerate wrote: This is probably a simple question, but I have an API that dynamically generates a PNG image, and I'm not sure how to incorporate it in an Ember app. The idea is that the user sets...
View ArticleRendering an image from model string in specific events only
@neophoenix wrote: Hey guys, I was trying to get an image to load in a certain setup. I have a dynamic events page where the model fetches data from firebase. In each case, the route does not change...
View ArticleRoute property in Template
@adsl99801 wrote: In Controller has a property called email ,then the template can use it {{email}} to present value. ex: export default Ember.Controller.extend({ email:'my@email.com', But How to...
View ArticleEmber Mirage - Assertion Failed: `actions` must be provided at extend time,...
@fatbotdesigns wrote: Good day, I'm in the middle of upgrading our Ember app (from v. 1.13.15 to v. 2.4.2). Also, we have Mirage setup for our testing. When running ember server --test, I get the...
View ArticleContent Security Policy - application/pdf?
@hschillig wrote: So I'm embedding a PDF from a json response into an object tag after it's successful and I check for errors (since parameters are being passed to it to populate it).. however, I get...
View ArticleComponent test - expected template block text
@hschillig wrote: So for my component I recently created, I ran ember test via command prompt in my root directory and got this: actual: > expected: > template block text Why am I getting this?...
View ArticleIntroducting Zoey!
@Gaurav0 wrote: emberjs.com Ember.js: Introducing Zoey Ember.js helps developers be more productive out of the box. Designed with developer ergonomics in mind, its friendly APIs help you get your job...
View ArticleEmber paper - need some help
@erzzo wrote: Hi, I'm just beginning with ember so some things are not completely clear to me. I'm using ember paper https://github.com/miguelcobain/ember-paper/ and don't know how to do two things:...
View ArticleEmber controller transitiontoRote() in Ember.observer not work
@adsl99801 wrote: http://localhost:4200/#/account/enable?code=144dc55011bf719381b6597b8860f2f6eb8e611a17cec583b41f8a6b6ebe0f95 but in Ember.observer function transitionToRoute() is not work...
View ArticleLazy Loading Ember-Data Queries
@anlumo wrote: I'm trying to write an ember-data adapter for a custom API backend. It allows full-text search using a query, returning records from the store. I implemented query(store, type, query)...
View ArticleMust I extend any of the serializers in emberjs
@kjawhar wrote: I am declaring in my model the following: import DS from 'ember-data'; export default DS.Model.extend({ name: DS.attr('string'), age: DS.attr('number') }); My server is returning the...
View ArticleNPM controversy
@Bauke wrote: There is quite a controversy going on concerning NPM. This guy removed his NPM libraries because of some legal issues. In the void left behind, not only were many projects broken, but...
View Article