How to get rid of unexisting function warnings
@IAmJulianAcosta wrote: When I have to use external libraries in ember, I'm getting several warnings like this one: line 3, col 5, 'log' is not defined. Is there any way to avoid this? Posts: 1...
View ArticleReflexive relashiption jsonapi
@phatle wrote: Hi, I have a jsonapi: Screen Shot 2016-02-25 at 10.22.04 AM.png1050x384 58.5 KB In my member model: Screen Shot 2016-02-25 at 10.24.07 AM.png1050x146 23.6 KB it’s reflexive relationship...
View ArticleCo-ordinating deployments when using ember-cli-deploy-lightning
@akshayrawat wrote: When using ember-cli-deploy-lightning-pack, is there a way to automate activating the right version of the Ember app. For example: Scenario 1: There are some updates to the Ember...
View ArticleEmber shorthand for self.controllerFor on same route/controller
@harimath wrote: Is there a shorthand for the following code (i.e. calling controller attribute from the same named route) self.controllerFor(self.routeName).get('myAttribute') I have already tried...
View ArticleNewbie question: Use and bind {{input}} inside a component
@Havremunken wrote: Hi there, Sorry if this is a silly question. I am in the middle of the steepest part of the learning curve and trying to get a simple app going as a learning tool for myself, and...
View ArticleI need help to do inline validations on ember forms
@anaspm wrote: I wish to use an add-on to do validations on my ember form which lies in a component . I tried to use ember-cp-validation add-on I followed the instructions provided by their git. In...
View ArticleHow to pass arguments to dynamic model
@Om_Prakash_Bairagi wrote: I want to pass two (or more) arguments to this.store.find() ; I have app.router.js like Router.map(function() { this.route('posts'); this.route('post', { path:...
View ArticleHow to load popups without bootstrap
@Deepak_Negi_Sunny wrote: We are migrating our huge project from Ember 1.x to 2.3. The project has many popups which are basically regions to render views / popups. Please tell a standard way to load...
View ArticleDebugging code in Ember.js 2.3
@Deepak_Negi_Sunny wrote: Dear Members, I am facing problem while debugging Ember 2.3 code as in crome web developer tool the code is coming minified. In Ember 1.x the code used to appear in chrome...
View ArticleGet data from non-standard api Call
@mtangoo wrote: So far I have been dealing with "standard" kind of API calls like /posts/ or /post/4 but now am wondering how to call "non standard" api call like GET /post/search/some_text or...
View ArticleWhat is the best practice for DDAU components?
@ibarrick wrote: The easiest way to explain what I mean is by example. Suppose you have an array of Ember Data records that represent students, and a number of components that are meant to represent...
View ArticleTransition.params vs transition.queryParams?
@Ping wrote: In the context of route's beforeModel(transition), I am trying to get hold of the params being passed in from a link-to. But I keep getting undefined from transition.queryParams.foo so I...
View ArticleHow can I do select all checkboxes without using controller
@anaspm wrote: I have got a select all check box sample in which controller is using how can I do the same thing without using controller here is the jsbin link...
View ArticleEmber-validations custom validator setup
@ykaragol wrote: I'm using Ember 2.3 and DockYard's ember-validations version "2.0.0-alpha.4". I'm using POD structure on my project. No matter with predefined validations but I'm facing with...
View ArticleWorkflow with ember-data and ajax api call
@Stijn_Aerts wrote: Hi, I have this code in routes/index.js: model( ) { return Ember.RSVP.hash( { maps: ajax( { url: '*********************', type: 'get' } ).then( function( data ) { console.log(...
View ArticleEmber variables/namespaces seem not to resolve
@portugaleren wrote: I'm reasonably new to ember, I've typed a few example programs and I'm now trying a new one. I'm using ember 2.3.1 which i have just installed. It seems that ember...
View ArticleJSONAPI Implementation in Ember
@mtangoo wrote: Hi, is there a documentation somewhere with examples as to which subset does ember data support. TIA, Stefano Posts: 1 Participants: 1 Read full topic
View ArticleRender component in SPECIFIC outlet or named outlet
@Deepak_Negi_Sunny wrote: Dear Members, Is is possible to render a component in specific outlet i.e. {{outlet 'myoutlet'}} written in application.hbs or any hbs. Please reply with Ember 2.3 compatible...
View ArticleEmber Data adapter for Gigya
@einarsvan wrote: Hi We're looking for help with bugfixing an adapter for Gigya's JS API for our Ember app that will be releasing (very) soon. Is there anyone that has written an adapter for Gigya's...
View ArticleUpload user profile image
@mtangoo wrote: Hi, Newcomer to ember trying to catch up with the bus. I have user model which I need to Upload user profile image. My backend is PHP. I cannot find examples with file Upload. I need...
View Article