jQuery Dependency
@charlespeters wrote: if i swap out $.ajax for something like axios or fetch is jquery still a necessary dependency or could it be dropped? and if it can't be dropped is there a roadmap for dropping...
View ArticleSet CSS class on power-select
@niconel wrote: I'm not sure if I'm missing something because in my earlier versions of this project (first with ember) this worked. I need to set the CSS class of my ember-power-select addon The...
View ArticleThe status of {{unbound}}
@Bauke wrote: With the final release of a project approaching, I'm trying to optimize and improve the project for the production build. So I came across unbound: My new car is {{unbound color}} But...
View ArticleDestroyrecord promise never fire
@niconel wrote: I guess I got this all wrong. the alert in the code below never fires(for what it matter, I'm deleting an "identifier" which belong to a "deal" and even though the call hit my api, and...
View ArticleHow to test something from non-standard ember directory?
@xwingz wrote: I have some non-standard ember directories in my ember app. For example, in addition to the standard directories generated by ember-cli (adapters, components, controllers, etc), there...
View ArticleFor a simple form use case is it better to use controllers or components?
@gjhawar wrote: I have a use case where I am using a tabbed controller to display some tabs and some forms under each tab and the user can jump back and forth between these tabs/forms to fill them....
View ArticleGET request with parameters (api never see parameters)
@niconel wrote: My API (asp.net web API) method looks as follows and thus expect a URL like "http://localhost/..../api/dealtests/25/2" [Route("api/dealtests/{take}/{page}")] public IHttpActionResult...
View ArticleWhat is the best harness stack for end-to-end UI acceptance tests?
@thorskettle wrote: I'm working on an Ember.js project that leverages testem/qunit/phantom.js. Our unit and integration tests are working fabulously well with this framework and configuration which is...
View ArticleCreating Models for Many to Many Relationship
@iaskquestions wrote: I have two models. Lets call them mult and post. They have a many to many relationship. Their definitions looks like: Post: export default Model.extend({ name: attr(), mult:...
View ArticleEmber embedded record mixin append related model
@Zorig wrote: I have artist, album, track pages. Tracks are related to artist, track can have many artists. I have an artist page with listing artist's top tracks and albums. Problem is When i load...
View ArticlePushing registration form details into MySQL database
@Lahari wrote: I am very new to ember.I am using ember-cli.I have created a registration form and i want to insert this details into my Mysql database.I have my backend in jsp and called the jsp file...
View ArticleReturn data from action to component
@Rashe wrote: I use highcharts and I wanted to load data on legend change. so I use on click event in component, than I send action to controller where I get data. And now I need to send it back, to...
View ArticleAmber-data handling in amber.js
@Nirali_Raiyani wrote: How to use sql as backend though php in ambr.js Posts: 2 Participants: 2 Read full topic
View ArticleFormat of RESTSerializer
@iaskquestions wrote: What is a good place to find examples or documentation on what the RESTSerializer expects in Ember 2.6x? I am struggling with the case where I have a model User with export...
View ArticleBest Practice - Getting access to checkbox component within ember-table from...
@Elim wrote: Hi there. Just hoping to get some feedback on what the best approach is for a situation like this. I am trying to implement a column with a checkbox in a table created with ember-table (...
View ArticleMissing Model Relationship
@iaskquestions wrote: Hi All I am using Ember 2.x with Ember Data 2.x with the RESTApdapter. I am struggling to make sure that my POST requests are sending the right JSON data. For example, I do...
View Article`ember-cli-proxify`, demo addon that uses ES6 Proxies to make `.get()` obsolete
@lux wrote: Hello Everyone! I want to share something I've written. Its really just a demo addon, and I don't recommend to use it in production but it shows what ES6 proxies will can for us. Its on...
View ArticleLink-To or Action in html link template possible?
@niconel wrote: After much struggling I opted to get jquery datatables work by creating a component and initialize the datatable in after render.All works fine, but in my column definitions I must...
View ArticleUsing queryParams in Controller init()
@wasabigeek wrote: What's the best way to make use of queryParams in a Controller's init() function? When I try something like this: export default Ember.Controller.extend({ queryParams: ['paymentId',...
View ArticleEmber-CLI-Mirage throws error when defining relationship in Mirage Model
@ChrizzDF wrote: Hi there, I would be really happy if someone could fix this problem...I already searched the Mirage issues section, google, here on ember discuss, etc. Everything is working fine as...
View Article